From 217ab945dca99ebcd17faf7ef6c2ca5fa89386c7 Mon Sep 17 00:00:00 2001 From: Jon Sauter Date: Tue, 18 Sep 2018 11:04:10 -0600 Subject: [PATCH] removing dump file --- .../cumulus-asgthing-ALB/ALB-e416d7a9.json | 225 ------------------ 1 file changed, 225 deletions(-) delete mode 100644 tests/stacker_test/dump/stack_templates/cumulus-asgthing-ALB/ALB-e416d7a9.json diff --git a/tests/stacker_test/dump/stack_templates/cumulus-asgthing-ALB/ALB-e416d7a9.json b/tests/stacker_test/dump/stack_templates/cumulus-asgthing-ALB/ALB-e416d7a9.json deleted file mode 100644 index fc0d2dc..0000000 --- a/tests/stacker_test/dump/stack_templates/cumulus-asgthing-ALB/ALB-e416d7a9.json +++ /dev/null @@ -1,225 +0,0 @@ -{ - "Conditions": { - "UseIAMCert": { - "Fn::Not": [ - { - "Fn::Equals": [ - { - "Ref": "ALBCertType" - }, - "acm" - ] - } - ] - }, - "UseSSL": { - "Fn::Not": [ - { - "Fn::Equals": [ - { - "Ref": "ALBCertName" - }, - "" - ] - } - ] - } - }, - "Description": "Acceptance Tests for cumulus scaling groups", - "Mappings": { - "AmiMap": { - "us-west-2": { - "amazonLinux2": "ami-a9d09ed1" - } - } - }, - "Outputs": { - "CanonicalHostedZoneID": { - "Value": { - "Fn::GetAtt": [ - "cumulusalbLoadBalancer", - "CanonicalHostedZoneID" - ] - } - }, - "DNSName": { - "Value": { - "Fn::GetAtt": [ - "cumulusalbLoadBalancer", - "DNSName" - ] - } - }, - "IAlbListener": { - "Value": { - "Ref": "Listener" - } - }, - "InternalAlbSG": { - "Value": { - "Ref": "cumulusalbAlbSG" - } - } - }, - "Parameters": { - "ALBCertName": { - "Default": "", - "Description": "The SSL certificate name to use on the ALB.", - "Type": "String" - }, - "ALBCertType": { - "Default": "acm", - "Description": "The SSL certificate type to use on the ALB.", - "Type": "String" - }, - "ALBHostName": { - "Default": "", - "Description": "A hostname to give to the ALB. If not given no ALB will be created.", - "Type": "String" - }, - "AvailabilityZones": { - "Description": "Availability Zones to deploy instances in.", - "Type": "CommaDelimitedList" - }, - "InstanceType": { - "Default": "t2.micro", - "Description": "EC2 Instance Type", - "Type": "String" - }, - "MaxSize": { - "Default": "5", - "Description": "Maximum # of instances.", - "Type": "Number" - }, - "MinSize": { - "Default": "1", - "Description": "Minimum # of instances.", - "Type": "Number" - }, - "PrivateSubnets": { - "Description": "Subnets to deploy private instances in.", - "Type": "List" - }, - "VpcId": { - "Description": "Vpc Id", - "Type": "AWS::EC2::VPC::Id" - } - }, - "Resources": { - "DefaultTargetGroupcumulusalb": { - "Properties": { - "Port": "80", - "Protocol": "HTTP", - "VpcId": { - "Ref": "VpcId" - } - }, - "Type": "AWS::ElasticLoadBalancingV2::TargetGroup" - }, - "Listener": { - "Properties": { - "Certificates": [ - { - "CertificateArn": { - "Fn::If": [ - "UseIAMCert", - { - "Fn::Join": [ - "", - [ - "arn:aws:iam::", - { - "Ref": "AWS::AccountId" - }, - ":server-certificate/", - { - "Ref": "ALBCertName" - } - ] - ] - }, - { - "Fn::Join": [ - "", - [ - "arn:aws:acm:", - { - "Ref": "AWS::Region" - }, - ":", - { - "Ref": "AWS::AccountId" - }, - ":certificate/", - { - "Ref": "ALBCertName" - } - ] - ] - } - ] - } - } - ], - "DefaultActions": [ - { - "TargetGroupArn": { - "Ref": "DefaultTargetGroupcumulusalb" - }, - "Type": "forward" - } - ], - "LoadBalancerArn": { - "Ref": "cumulusalbLoadBalancer" - }, - "Port": "443", - "Protocol": "HTTPS" - }, - "Type": "AWS::ElasticLoadBalancingV2::Listener" - }, - "LocalNetworkTocumulusalbAlbPort443": { - "Properties": { - "CidrIp": "10.0.0.0/0", - "FromPort": "443", - "GroupId": { - "Ref": "cumulusalbAlbSG" - }, - "IpProtocol": "tcp", - "ToPort": "443" - }, - "Type": "AWS::EC2::SecurityGroupIngress" - }, - "cumulusalbAlbSG": { - "Properties": { - "GroupDescription": "cumulusalbAlbSG", - "VpcId": { - "Ref": "VpcId" - } - }, - "Type": "AWS::EC2::SecurityGroup" - }, - "cumulusalbLoadBalancer": { - "Properties": { - "Scheme": "internal", - "SecurityGroups": [ - { - "Ref": "cumulusalbAlbSG" - } - ], - "Subnets": { - "Ref": "PrivateSubnets" - } - }, - "Type": "AWS::ElasticLoadBalancingV2::LoadBalancer" - }, - "cumulusalbSG": { - "Properties": { - "GroupDescription": "cumulusalbSG", - "VpcId": { - "Ref": "VpcId" - } - }, - "Type": "AWS::EC2::SecurityGroup" - } - } -} \ No newline at end of file