prima-twig 0.62.10 → 0.62.11
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/bin/twig-feature +8 -12
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a1e313492847661551cdf3966a307a1d392b39c848d459ca6f09149da21b0a6
|
|
4
|
+
data.tar.gz: e529fc58483d06680781ee07248e9518f1db1bff015f429493f2ee51c5992cd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d60da157440b45da6c73d83ae7a7665419606d3e85fc49b85cff9216dd0b7af1b6b98282acd76338117493e7710a8fb9083d17a854ed93a761a0f1c41f6ed925
|
|
7
|
+
data.tar.gz: deb8eb60007b2f55705bba4e1b1835fd2a41cc11ba63d0c1730d0fdae7f0517a1856c9c5b74520fdfdf52b8897795814c87cf8a6cea05109662d4b32ff717cd0
|
data/bin/twig-feature
CHANGED
|
@@ -640,7 +640,7 @@ class Release
|
|
|
640
640
|
`mkdir -p cloudformation/stacks/task cloudformation/stacks/route53 cloudformation/stacks/asg cloudformation/stacks/elb`
|
|
641
641
|
@s3.get_object({bucket: "prima-deploy", key: 'cloudformation/stacks/task/db.yml', response_target: 'cloudformation/stacks/task/db.yml'})
|
|
642
642
|
@s3.get_object({bucket: "prima-deploy", key: 'cloudformation/stacks/route53/qa.yml', response_target: 'cloudformation/stacks/route53/qa.yml'})
|
|
643
|
-
@s3.get_object({bucket: "prima-deploy", key: 'cloudformation/stacks/asg/
|
|
643
|
+
@s3.get_object({bucket: "prima-deploy", key: 'cloudformation/stacks/asg/ecs-asg-allinone.yml', response_target: 'cloudformation/stacks/asg/ecs-asg-allinone.yml'})
|
|
644
644
|
@s3.get_object({bucket: "prima-deploy", key: 'cloudformation/stacks/ecs-cluster.yml', response_target: 'cloudformation/stacks/ecs-cluster.yml'})
|
|
645
645
|
@s3.get_object({bucket: "prima-deploy", key: 'cloudformation/stacks/elb/alb-public-qa.yml', response_target: 'cloudformation/stacks/elb/alb-public-qa.yml'})
|
|
646
646
|
end
|
|
@@ -2727,23 +2727,19 @@ class Release
|
|
|
2727
2727
|
end
|
|
2728
2728
|
|
|
2729
2729
|
def create_asg_stack(stack_name, tags = [])
|
|
2730
|
-
stack_body = IO.read('cloudformation/stacks/asg/
|
|
2730
|
+
stack_body = IO.read('cloudformation/stacks/asg/ecs-asg-allinone.yml')
|
|
2731
2731
|
parameters = [
|
|
2732
2732
|
{
|
|
2733
|
-
parameter_key: "
|
|
2734
|
-
parameter_value:
|
|
2733
|
+
parameter_key: "Environment",
|
|
2734
|
+
parameter_value: "qa"
|
|
2735
2735
|
},
|
|
2736
2736
|
{
|
|
2737
|
-
parameter_key: "
|
|
2738
|
-
parameter_value: "t3.large
|
|
2737
|
+
parameter_key: "InstanceType",
|
|
2738
|
+
parameter_value: "t3.large"
|
|
2739
2739
|
},
|
|
2740
2740
|
{
|
|
2741
|
-
parameter_key: "
|
|
2742
|
-
parameter_value:
|
|
2743
|
-
},
|
|
2744
|
-
{
|
|
2745
|
-
parameter_key: "Environment",
|
|
2746
|
-
parameter_value: "qa"
|
|
2741
|
+
parameter_key: "ECSClusterName",
|
|
2742
|
+
parameter_value: @ecs_cluster_name
|
|
2747
2743
|
},
|
|
2748
2744
|
{
|
|
2749
2745
|
parameter_key: "AMIID",
|