uc3-sam-sceptre 0.0.24 → 0.0.26

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79c445dff47e74542ae4dc9ce5b6692e9b9e00550fb74f23f300d2e4821b6cfa
4
- data.tar.gz: 75d94ff35c495d16cd9f02fc654817713e190396d168ad77a39fc2c8f6c2ca73
3
+ metadata.gz: e63bdfbd4d9d332d45f81c48b4113c0e8926253f6eb1d1da3bc21d8a2076a8b0
4
+ data.tar.gz: 58c2682579403736e4d36ee8febe6f2e78c7567d3d45336f2c6a9069bb18c789
5
5
  SHA512:
6
- metadata.gz: d5a7140eafb7dac6b8c651f0a45ba58d9181c2a07d78e5605313d87e94551de5b97d8a6d2bfe102574543f4a047ea6045763b888e7cf28fe50e4c6763a3d6de6
7
- data.tar.gz: 250f7295003a3dd91f8a97ff74f2981832295f6ae28a0e775cb85c95ddc724a6039a199b60bd8482a1402cb8a08cee8f78439d1c338b23c95ea1470b573174de
6
+ metadata.gz: 5af942b563de3d285cab0b5733d892ee1828fa890b381228eb4b60ef089ba942b41f487b008616211134200cab8898531c6ebb0c7eff9c35133352321cc78ddb
7
+ data.tar.gz: d52ae61c6465014478c5a7707f29c80ea0f7638441ff9d886c2dbfcc84a756cfe2ce65637d6f623c0eb9cbcf19315c476d13ff959d3ce06d0926368ee3c2f717
data/README.md CHANGED
@@ -210,12 +210,17 @@ if ARGV.length == 2
210
210
  { template_param_name: 'Version', value: 'v0' }
211
211
  ]
212
212
  }
213
-
214
213
  proxy = Uc3SamSceptre::Proxy.new(params)
215
- proxy.build if ARGV[0].to_s.downcase.strip == 'true'
216
- proxy.deploy if ARGV[1].to_s.downcase.strip == 'true'
214
+
215
+ if ARGV[0].to_s.downcase.strip == 'false' && ARGV[1].to_s.downcase.strip == 'false'
216
+ proxy.delete
217
+ else
218
+ proxy.build if ARGV[0].to_s.downcase.strip == 'true'
219
+ proxy.deploy if ARGV[1].to_s.downcase.strip == 'true'
220
+ end
217
221
  else
218
- p 'Expected 2 arguments: run build? and run deploy? (For example: `ruby sam_build_deploy.rb true true`)'
222
+ p 'Expected 2 arguments: run build? and run deploy? (For example: `ruby sam_build_deploy.rb true true`).'
223
+ p 'Setting both arguments to false will trigger a `sam delete`.'
219
224
  end
220
225
  ```
221
226
 
@@ -249,9 +254,15 @@ if ARGV.length == 2
249
254
  }
250
255
 
251
256
  proxy = Uc3SamSceptre::Proxy.new(params)
252
- proxy.build if ARGV[0].to_s.downcase.strip == 'true'
253
- proxy.deploy if ARGV[1].to_s.downcase.strip == 'true'
257
+
258
+ if ARGV[0].to_s.downcase.strip == 'false' && ARGV[1].to_s.downcase.strip == 'false'
259
+ proxy.delete
260
+ else
261
+ proxy.build if ARGV[0].to_s.downcase.strip == 'true'
262
+ proxy.deploy if ARGV[1].to_s.downcase.strip == 'true'
263
+ end
254
264
  else
255
265
  p 'Expected 2 arguments: run build? and run deploy? (For example: `ruby sam_build_deploy.rb true true`)'
266
+ p 'Setting both arguments to false will trigger a `sam delete`.'
256
267
  end
257
268
  ```
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3SamSceptre
4
- VERSION = '0.0.24'
4
+ VERSION = '0.0.26'
5
5
  end
@@ -72,6 +72,7 @@ module Uc3SamSceptre
72
72
  '--capabilities CAPABILITY_NAMED_IAM',
73
73
  '--disable-rollback false'
74
74
  ]
75
+
75
76
  # Add the S3 or ECR details depending on what we're working with
76
77
  args << "--s3-bucket #{_locate_value(key: @s3_arn_key)&.gsub('arn:aws:s3:::', '')}" unless @s3_arn_key.nil?
77
78
  args << "--s3-prefix #{@stack_name}" unless @s3_arn_key.nil?
@@ -83,6 +84,11 @@ module Uc3SamSceptre
83
84
  system "sam deploy #{args.join(' ')}"
84
85
  end
85
86
 
87
+ # Run a SAM delete
88
+ def delete
89
+ system "sam delete --stack-name #{@stack_name}"
90
+ end
91
+
86
92
  private
87
93
 
88
94
  # Construct the AWS tags that SAM will use when building resources
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.24
4
+ version: 0.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley