uc3-sam-sceptre 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fbf38dc52ab7d2c638ab08c96f6503c916acdc9620dbbad4533f5da32773160
4
- data.tar.gz: 716f30ff5f142b307f4f19fb4d0a1f0efe59d8f1a4b46e1a6c61e4fda794d745
3
+ metadata.gz: 7e03b622a3e43e876825d8d6f6aa6f3ad596bcaaceab514404285c409630d4ac
4
+ data.tar.gz: 906a724eb85a5856802a62552824ace1cf2c242f445cb1680167cffd06d12036
5
5
  SHA512:
6
- metadata.gz: 934f6c8610c3107fed7b3250223cf7f87dbc1721e19f13f07a122903cfe7eca0e3c42f975190f1d1909cb93861c919cf4a5771d3bdf549a22d94771204290ee4
7
- data.tar.gz: de7a621b285cddd59d305f8b5682ede28d58a2b6813346865f2f7cd80a2848b8bce413033b27be77f2389edefff067aaa014b9184d4c754655cd6e11914c990f
6
+ metadata.gz: 5db8398b1fbae1c78e8ecfc554e6de8cbb19c8a02c6659afc8df1d4ffb8410ac8bb85a525747f09a1413742479cd742521439d754f7eff609a90c855d68e64c7
7
+ data.tar.gz: df58714eef33bc4c1e1202b437bd961a18ba760b4a77cdfd3da968e250fe58d7af329d908dc8e8edc429da407a2c6f1253b93a48e14d86a75aa101049f7572ae
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3SamSceptre
4
- VERSION = '0.0.4'
4
+ VERSION = '0.0.6'
5
5
  end
@@ -76,7 +76,7 @@ module Uc3SamSceptre
76
76
  ]
77
77
  # Add the S3 or ECR details depending on what we're working with
78
78
  args << "--s3-bucket #{_locate_value(key: @s3_arn_key)&.gsub('arn:aws:s3:::', '')}" unless @s3_arn_key.nil?
79
- args << "--s3-prefix #{@stack_name}" unles @s3_arn_key.nil?
79
+ args << "--s3-prefix #{@stack_name}" unless @s3_arn_key.nil?
80
80
  args << "--image-repository #{_locate_value(key: @ecr_uri_key)}" unless @ecr_uri_key.nil?
81
81
 
82
82
  args << "--guided" if guided
@@ -107,7 +107,7 @@ module Uc3SamSceptre
107
107
  msg = "Unable to locate value for #{hash[:stack_export_name]}! Make sure you have exported it from the CF Stack."
108
108
  raise ProxyError, msg if val.nil?
109
109
 
110
- overrides << { _sam_param(key: hash.fetch(:template_param_name, hash[:stack_export_name]), value: val) }
110
+ overrides << _sam_param(key: hash.fetch(:template_param_name, hash[:stack_export_name]), value: val)
111
111
  end
112
112
 
113
113
  @static_cf_params.each do { |hash| overrides << _sam_param(key: hash[:template_param_name], value: hash[:value]) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-sam-sceptre
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley