We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d310d commit a8b16f4Copy full SHA for a8b16f4
internal/acctest/data.go
@@ -66,16 +66,20 @@ resource %[1]q %[2]q {}
66
`, td.TerraformResourceType, td.ResourceLabel)
67
68
config = fmt.Sprintf(`
69
+resource awscc_ec2_vpc drew {
70
+ cidr_block = "10.0.0.0/16"
71
+}
72
+
73
terraform {
74
provider_meta "awscc" {
75
user_agent = [{
- name = "my-test-module"
- version = "0.0.1"
76
+ product_name = "my-test-module"
77
+ product_version = "0.0.1"
78
comment = "testing user-agent comment"
79
},
80
{
- name = "2nd-user-agent"
81
+ product_name = "2nd-user-agent"
82
83
comment = "2nd user agent"
84
}
85
]
internal/diag/diag.go
0 commit comments