Method: Jets::Cfn::Base#normalize_tags
- Defined in:
- lib/jets/cfn/base.rb
#normalize_tags(tags) ⇒ Object
65 66 67 68 69 70 71 72 73 |
# File 'lib/jets/cfn/base.rb', line 65 def () if .is_a?(Hash) .map do |k, v| {Key: k.to_s, Value: v.to_s} end else # Array passthrough end end |