Closed
Description
Not working
{
"resource" : {
"aws_security_group" : {
"allow_external_http_https" : {
"tags" : {
"Name" : "allow_external_http_https"
}
}
}
}
}
Error loading config: Error loading test/vpc.tf: position -: resource must be followed by exactly two strings, a type and a name
Whereas this works
{
"resource" : {
"aws_security_group" : {
"allow_external_http_https" : {
"name" : "allow_external_http_https",
"tags" : {
"Name" : "allow_external_http_https"
}
}
}
}
}