Skip to content

Commit

Permalink
do not template the default value from file
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanholsteijn committed Oct 25, 2019
1 parent 4658229 commit 4089746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func ssmParameterReferencesToEnvironment(refs []SSMParameterRef) (map[string]str
if err != nil {
return nil, fmt.Errorf("ERROR: %s, %s\n", msg, err)
}
result[*ref.name] = formatValue(&ref, &value)
result[*ref.name] = value
}
}
return result, nil
Expand Down

0 comments on commit 4089746

Please sign in to comment.