aws-spec-generator 0.1.39 → 0.1.40
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 +4 -4
- data/lib/aws/spec/generator/version.rb +1 -1
- data/lib/aws_spec_generator.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54e9e26b4ff009323c29c6078e0ae719c50b6f0e
|
|
4
|
+
data.tar.gz: c673c367a202761df0bd7ac40fabc6a7bbb8b1d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e0a683679cb98d375781c7ee0854d980f14f113687b98d1110105a04e6ddb5631cfd96ec75a18325c73e8388972023d08e741b86da11c3dfcf9eb316f2be8fb
|
|
7
|
+
data.tar.gz: 3b26acaeb97737a1b7373188d79e06432be52bc9007d343b2a48224a596b835a77e04f8eb661483c17b4ba25c9f6bda5ffba6571419a8ad568797b7b458ea441
|
data/lib/aws_spec_generator.rb
CHANGED
|
@@ -162,7 +162,7 @@ class AwsSpecGenerator
|
|
|
162
162
|
|
|
163
163
|
# retrieve the VPC names for this account
|
|
164
164
|
def query_vpc_ids
|
|
165
|
-
stdout, stderr, status = Open3.capture3('aws
|
|
165
|
+
stdout, stderr, status = Open3.capture3('aws ec2 describe-vpcs')
|
|
166
166
|
raise("Error: Failed to recover vpc list #{stderr}") unless status.success?
|
|
167
167
|
|
|
168
168
|
JSON.parse(stdout)['Vpcs'].each do |vpc|
|