awx 0.5.1 → 0.6.0
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/aws_cloudformation.rb +23 -7
- data/lib/aws/aws_outputter.rb +15 -11
- data/lib/aws/aws_profile.rb +13 -9
- data/lib/aws/aws_reports.rb +18 -16
- data/lib/awx.rb +76 -30
- data/lib/core/deployments.rb +65 -0
- data/lib/core/replacer.rb +282 -0
- data/lib/routes/{aws_cloudformation_create.rb → cloudformation_create.rb} +221 -116
- data/lib/routes/{aws_cloudformation_delete.rb → cloudformation_delete.rb} +1 -1
- data/lib/routes/{aws_cloudformation_detect_drift.rb → cloudformation_detect_drift.rb} +1 -1
- data/lib/routes/{aws_deploy.rb → deploy_deprecated.rb} +11 -8
- data/lib/routes/{aws_dynamo_db.rb → dynamo_db.rb} +1 -1
- data/lib/routes/infrastructure.rb +45 -0
- data/lib/routes/{aws_list.rb → list.rb} +20 -5
- data/lib/routes/ssh.rb +70 -0
- data/lib/routes/{aws_switch.rb → switch.rb} +1 -1
- data/lib/routes/upload.rb +49 -0
- data/lib/version.rb +1 -1
- data/opt/awx/deployment-schema.yml +57 -0
- data/opt/awx/reports.yml +105 -37
- data/opt/config/schema.yml +22 -0
- data/opt/config/template.yml +9 -1
- metadata +17 -11
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: awx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Albert Rannetsperger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: blufin-lib
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.7.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.7.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: json
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,15 +98,21 @@ files:
|
|
98
98
|
- lib/aws/aws_reports.rb
|
99
99
|
- lib/aws/aws_validator.rb
|
100
100
|
- lib/awx.rb
|
101
|
+
- lib/core/deployments.rb
|
101
102
|
- lib/core/opt.rb
|
102
|
-
- lib/
|
103
|
-
- lib/routes/
|
104
|
-
- lib/routes/
|
105
|
-
- lib/routes/
|
106
|
-
- lib/routes/
|
107
|
-
- lib/routes/
|
108
|
-
- lib/routes/
|
103
|
+
- lib/core/replacer.rb
|
104
|
+
- lib/routes/cloudformation_create.rb
|
105
|
+
- lib/routes/cloudformation_delete.rb
|
106
|
+
- lib/routes/cloudformation_detect_drift.rb
|
107
|
+
- lib/routes/deploy_deprecated.rb
|
108
|
+
- lib/routes/dynamo_db.rb
|
109
|
+
- lib/routes/infrastructure.rb
|
110
|
+
- lib/routes/list.rb
|
111
|
+
- lib/routes/ssh.rb
|
112
|
+
- lib/routes/switch.rb
|
113
|
+
- lib/routes/upload.rb
|
109
114
|
- lib/version.rb
|
115
|
+
- opt/awx/deployment-schema.yml
|
110
116
|
- opt/awx/reports.yml
|
111
117
|
- opt/config/schema.yml
|
112
118
|
- opt/config/template.yml
|