This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/terraform/terraform.cue
Andrea Luzzardi b979e2e994 stdlib: terraform support
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2021-05-07 12:00:45 -07:00

66 lines
941 B
CUE

package terraform
import (
"encoding/json"
"dagger.io/dagger"
"dagger.io/dagger/op"
)
#Configuration: {
version: string | *"latest"
source: dagger.#Artifact
tfvars?: [string]: _
env: [string]: string
state: #up: [
op.#FetchContainer & {
ref: "hashicorp/terraform:\(version)"
},
op.#Copy & {
from: source
dest: "/src"
},
if tfvars != _|_ {
op.#WriteFile & {
dest: "/src/terraform.tfvars.json"
content: json.Marshal(tfvars)
}
},
op.#Exec & {
args: ["terraform", "init"]
dir: "/src"
"env": env
},
op.#Exec & {
args: ["terraform", "apply", "-auto-approve"]
always: true
dir: "/src"
"env": env
},
]
output: {
#up: [
op.#Load & {from: state},
op.#Exec & {
args: ["sh", "-c", "terraform output -json > /output.json"]
dir: "/src"
"env": env
},
op.#Export & {
source: "/output.json"
format: "json"
},
]
...
}
}