Also ignore empty VPC config after all
This commit is contained in:
parent
288ba868e4
commit
f92b2b7c58
|
@ -688,6 +688,10 @@ func flattenLambdaVpcConfigResponse(s *lambda.VpcConfigResponse) []map[string]in
|
|||
return nil
|
||||
}
|
||||
|
||||
if len(s.SubnetIds) == 0 && len(s.SecurityGroupIds) == 0 && s.VpcId == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
settings["subnet_ids"] = schema.NewSet(schema.HashString, flattenStringList(s.SubnetIds))
|
||||
settings["security_group_ids"] = schema.NewSet(schema.HashString, flattenStringList(s.SecurityGroupIds))
|
||||
if s.VpcId != nil {
|
||||
|
|
Loading…
Reference in New Issue