github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/refactoring/testdata/move-validate-zoo/child/move-validate-child.tf (about) 1 2 # NOTE: This fixture is used in a test that doesn't run a full Terraform plan 3 # operation, so the count and for_each expressions here can only be literal 4 # values and mustn't include any references or function calls. 5 6 resource "test" "single" { 7 } 8 9 resource "test" "count" { 10 count = 2 11 } 12 13 resource "test" "zero_count" { 14 count = 0 15 } 16 17 resource "test" "for_each" { 18 for_each = { 19 a = "A" 20 } 21 }