aws-rails-provisioner 0.0.2.rc3 → 0.0.2.rc4
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/templates/fargate_stack.mustache +3 -3
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30ca9ca73c141e82fec63e88cc6715fec1833ebdda8d59292b3e61ed01a228c8
|
4
|
+
data.tar.gz: 8b75d4f54bad37e42e068156426e3d59fde0055b36788d179670099ce070e1c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 915480598b9567a1673cc4c4e41542dfd7480b6d5d0e065ad5b25e09a79fdf560d7bba12f9ed179f93cb44a97f1b0b804b747b4f8152f77fcff4f6115243edf4
|
7
|
+
data.tar.gz: ce8382770717c6a23e4a70e6d7f351a33271c073865f191ed66de000f28cd0616ccfc6b7216bf095c4a2592c9c66e79bdf13487f657ff72f30c708ee3fa1d033
|
@@ -34,7 +34,7 @@ export class {{stack_prefix}}FargateStack extends cdk.Stack {
|
|
34
34
|
{{#parameter_group}}
|
35
35
|
{{#cfn}}
|
36
36
|
// Create DB Cluster ParameterGroup
|
37
|
-
const
|
37
|
+
const parameterGroup = new rds.ParameterGroup(this, 'DBClusterPG', {
|
38
38
|
description: '{{description}}',
|
39
39
|
family: '{{family}}',
|
40
40
|
parameters: {
|
@@ -46,7 +46,7 @@ export class {{stack_prefix}}FargateStack extends cdk.Stack {
|
|
46
46
|
{{/cfn}}
|
47
47
|
{{#name}}
|
48
48
|
// Import DB cluster ParameterGroup
|
49
|
-
const
|
49
|
+
const parameterGroup = rds.ParameterGroup.fromParameterGroupName(
|
50
50
|
this, 'DBClusterPG', '{{.}}');
|
51
51
|
{{/name}}
|
52
52
|
{{/parameter_group}}
|
@@ -91,7 +91,7 @@ export class {{stack_prefix}}FargateStack extends cdk.Stack {
|
|
91
91
|
instanceIdentifierBase: '{{.}}',
|
92
92
|
{{/instance_identifier}}
|
93
93
|
instances: {{instances}},
|
94
|
-
parameterGroup:
|
94
|
+
parameterGroup: parameterGroup
|
95
95
|
});
|
96
96
|
const dbUrl = {{#postgres}}"postgres://"{{/postgres}}{{^postgres}}"mysql2://"{{/postgres}} + username + ":" + password + "@" + db.clusterEndpoint.socketAddress + "/{{db_name}}";
|
97
97
|
this.dbUrl = dbUrl;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-rails-provisioner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.2.
|
4
|
+
version: 0.0.2.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-rds
|
@@ -54,7 +54,8 @@ dependencies:
|
|
54
54
|
version: '1'
|
55
55
|
description: Define and deploy containerized Ruby on Rails Applications on AWS.
|
56
56
|
email:
|
57
|
-
-
|
57
|
+
- mamuller@amazon.com
|
58
|
+
- alexwoo@amazon.com
|
58
59
|
executables:
|
59
60
|
- aws-rails-provisioner
|
60
61
|
extensions: []
|
@@ -92,7 +93,7 @@ homepage: http://github.com/awslabs/aws-rails-provisioner
|
|
92
93
|
licenses:
|
93
94
|
- Apache-2.0
|
94
95
|
metadata: {}
|
95
|
-
post_install_message:
|
96
|
+
post_install_message:
|
96
97
|
rdoc_options: []
|
97
98
|
require_paths:
|
98
99
|
- lib
|
@@ -108,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
109
|
version: 1.3.1
|
109
110
|
requirements: []
|
110
111
|
rubygems_version: 3.0.3
|
111
|
-
signing_key:
|
112
|
+
signing_key:
|
112
113
|
specification_version: 4
|
113
|
-
summary:
|
114
|
+
summary: Deploy a Ruby on Rails application on AWS.
|
114
115
|
test_files: []
|