Skip to content

Instantly share code, notes, and snippets.

@webyneter
Last active March 3, 2020 10:33
Show Gist options
  • Save webyneter/ac75187ee6a75a03de0b46a29db52eed to your computer and use it in GitHub Desktop.
Save webyneter/ac75187ee6a75a03de0b46a29db52eed to your computer and use it in GitHub Desktop.
# terraform plan -out ./tfp
# ...
------------------------------------------------------------------------
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# helm_release.cert_manager will be created
+ resource "helm_release" "cert_manager" {
+ atomic = false
+ chart = "cert-manager"
+ cleanup_on_fail = false
+ dependency_update = false
+ disable_crd_hooks = false
+ disable_webhooks = false
+ force_update = false
+ id = (known after apply)
+ max_history = 0
+ metadata = (known after apply)
+ name = "staging-cert-manager-a0baf7cb"
+ namespace = "cert-manager"
+ recreate_pods = false
+ render_subchart_notes = true
+ replace = false
+ repository = "https://charts.jetstack.io"
+ reset_values = false
+ reuse_values = false
+ skip_crds = false
+ status = "deployed"
+ timeout = 300
+ verify = false
+ version = "v0.13.1"
+ wait = true
}
# helm_release.nginx_ingress will be created
+ resource "helm_release" "nginx_ingress" {
+ atomic = false
+ chart = "nginx-ingress"
+ cleanup_on_fail = false
+ dependency_update = false
+ disable_crd_hooks = false
+ disable_webhooks = false
+ force_update = false
+ id = (known after apply)
+ max_history = 0
+ metadata = (known after apply)
+ name = "staging-nginx-ingress-60f41c36"
+ namespace = "nginx-ingress"
+ recreate_pods = false
+ render_subchart_notes = true
+ replace = false
+ repository = "https://kubernetes-charts.storage.googleapis.com"
+ reset_values = false
+ reuse_values = false
+ skip_crds = false
+ status = "deployed"
+ timeout = 300
+ verify = false
+ version = "1.33.0"
+ wait = true
}
Plan: 2 to add, 0 to change, 0 to destroy.
------------------------------------------------------------------------
This plan was saved to: ./tfp
To perform exactly these actions, run the following command to apply:
terraform apply "./tfp"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment