jets 2.3.2 → 2.3.3

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: 222bfa44ac05628217a64b6f48266ed78ee3c880767b867c3a63e5d3cd88e87c
4
- data.tar.gz: a02c9e363b665e2aee1e96448bc591bb56e3c1e293fb18aa6ed336e2a9db324f
3
+ metadata.gz: 011aa7990e458d1e5fa86a9819b2972f7076468f88c84026b04b56aff0d710d0
4
+ data.tar.gz: ccf4510c62e2d667bc3b17fc32b82db90ea68828529e7cb9238f4b3458d62753
5
5
  SHA512:
6
- metadata.gz: bb07d8fb5c9de83582a60f73bbb77a835a7290fecffd356668d90d3c4b51fc43d53fdc8ff688a8a144f124670cf513ea3ff179b9e017e6eb8b054d16e9a3d800
7
- data.tar.gz: 8d218da7a87d8ad0e835804a68fd6fffe1a87af3c333f70e7175552311c35b58afe3783f5f3d76700cbf7b3fbe67a02e39e94f78b2c18c8f55c1fac87f5193aa
6
+ metadata.gz: ced86785418e3337fc85c0c5e0c300ccdd3200ee5eeb1c405eeba598aa0e1bc9beca95495cb3a8838a04ac1770a101fd4db6c7b424c9f7d7394c7cb75ad48069
7
+ data.tar.gz: 793c70ef4dc623f8b6fa218a1263ad8522752999f54f8fecc279975fccf3e8ca1ef00ac2366f5e1eef01930e09c71c361fab8239f3909eb304d4b0560ea03f4b
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [2.3.3]
7
+ - fix sqs_queue
8
+
6
9
  ## [2.3.2]
7
10
  - #394 introduce internal_finisher to fix shared resource extensions
8
11
 
@@ -3,7 +3,7 @@ module Jets::Stack::Main::Dsl
3
3
  def sqs_queue(id, props={})
4
4
  # props[:queue_name] ||= id.to_s # comment out to allow CloudFormation to generate name
5
5
  resource(id, "AWS::SQS::Queue", props)
6
- output(id, get_att(id, :arn)) # normal !Ref returns the sqs url the ARN is useful for nested stacks depends_on
6
+ output(id, value: get_att("#{id}.Arn")) # normal !Ref returns the sqs url the ARN is useful for nested stacks depends_on
7
7
  output("#{id}_url", ref(id)) # useful for Stack.lookup method. IE: List.lookup(:waitlist_url)
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "2.3.2"
2
+ VERSION = "2.3.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen