VpcId can be nil in the wild
This commit is contained in:
parent
28eff5bcf9
commit
eb2aaef016
|
@ -690,7 +690,9 @@ func flattenLambdaVpcConfigResponse(s *lambda.VpcConfigResponse) []map[string]in
|
|||
|
||||
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 {
|
||||
settings["vpc_id"] = *s.VpcId
|
||||
}
|
||||
|
||||
return []map[string]interface{}{settings}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue