Skip to content

Instantly share code, notes, and snippets.

@justincampbell
Created April 23, 2015 18:57
Show Gist options
  • Save justincampbell/2a32edb75cc2ae16d0d5 to your computer and use it in GitHub Desktop.
Save justincampbell/2a32edb75cc2ae16d0d5 to your computer and use it in GitHub Desktop.
Terraform Output Bug
heroku_app.default: Creating...
all_config_vars.#: "" => "<computed>"
git_url: "" => "<computed>"
heroku_hostname: "" => "<computed>"
name: "" => "terraform-output-bug"
region: "" => "us"
stack: "" => "<computed>"
web_url: "" => "<computed>"
heroku_app.default: Creation complete
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
The state of your infrastructure has been saved to the path
below. This state is required to modify and destroy your
infrastructure, so keep it safe. To inspect the complete state
use the `terraform show` command.
State path: terraform.tfstate
Outputs:
name = terraform-output-bug
output "name" { value = "${heroku_app.default.name}" }
output "whoops" { value = "${heroku_app.default.whoops}" }
resource "heroku_app" "default" {
name = "terraform-output-bug"
region = "us"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment