providers/aws: fix security group validations
This commit is contained in:
parent
ff0741a12e
commit
1d6dc475df
|
@ -183,9 +183,13 @@ func resource_aws_security_group_validation() *config.Validator {
|
||||||
return &config.Validator{
|
return &config.Validator{
|
||||||
Required: []string{
|
Required: []string{
|
||||||
"name",
|
"name",
|
||||||
|
"ingress.*",
|
||||||
|
"ingress.",
|
||||||
},
|
},
|
||||||
Optional: []string{
|
Optional: []string{
|
||||||
"description",
|
"description",
|
||||||
|
"vpc_id",
|
||||||
|
"owner_id",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue