Created
April 23, 2015 18:57
-
-
Save justincampbell/2a32edb75cc2ae16d0d5 to your computer and use it in GitHub Desktop.
Terraform Output Bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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