provider/aws: Guard against nil values in EC2 Tags
This commit is contained in:
parent
4bb3335541
commit
ecc455ebb4
|
@ -387,13 +387,13 @@ func ec2TagFiltersToMap(list []*codedeploy.EC2TagFilter) []map[string]string {
|
||||||
result := make([]map[string]string, 0, len(list))
|
result := make([]map[string]string, 0, len(list))
|
||||||
for _, tf := range list {
|
for _, tf := range list {
|
||||||
l := make(map[string]string)
|
l := make(map[string]string)
|
||||||
if *tf.Key != "" {
|
if tf.Key != nil && *tf.Key != "" {
|
||||||
l["key"] = *tf.Key
|
l["key"] = *tf.Key
|
||||||
}
|
}
|
||||||
if *tf.Value != "" {
|
if tf.Value != nil && *tf.Value != "" {
|
||||||
l["value"] = *tf.Value
|
l["value"] = *tf.Value
|
||||||
}
|
}
|
||||||
if *tf.Type != "" {
|
if tf.Type != nil && *tf.Type != "" {
|
||||||
l["type"] = *tf.Type
|
l["type"] = *tf.Type
|
||||||
}
|
}
|
||||||
result = append(result, l)
|
result = append(result, l)
|
||||||
|
|
Loading…
Reference in New Issue