opentofu/terraform/test-fixtures/apply-output-add-after/main.tf
James Nugent 2a0334125c Add test attempting to reproduce #2598
This attempts to reproduce the issue described in #2598 whereby outputs
added after an apply are not reflected in the output. As per the issue
the outputs are described using the JSON syntax.
2015-11-09 15:27:09 -05:00

7 lines
108 B
HCL

provider "aws" {}
resource "aws_instance" "test" {
foo = "${format("foo%d", count.index)}"
count = 2
}