baked in cloud formation template
parent
fe99ed800f
commit
709c102c38
|
|
@ -1409,8 +1409,8 @@ class BaseStackFormation {
|
||||||
}
|
}
|
||||||
exports.BaseStackFormation = BaseStackFormation;
|
exports.BaseStackFormation = BaseStackFormation;
|
||||||
BaseStackFormation.formation = ` AWSTemplateFormatVersion: '2010-09-09'
|
BaseStackFormation.formation = ` AWSTemplateFormatVersion: '2010-09-09'
|
||||||
Description: Game-CI base stack
|
Description: Game-CI base stack
|
||||||
Parameters:
|
Parameters:
|
||||||
EnvironmentName:
|
EnvironmentName:
|
||||||
Type: String
|
Type: String
|
||||||
Default: development
|
Default: development
|
||||||
|
|
@ -1424,7 +1424,7 @@ Parameters:
|
||||||
# Default: 80
|
# Default: 80
|
||||||
# Description: What port number the application inside the docker container is binding to
|
# Description: What port number the application inside the docker container is binding to
|
||||||
|
|
||||||
Mappings:
|
Mappings:
|
||||||
# Hard values for the subnet masks. These masks define
|
# Hard values for the subnet masks. These masks define
|
||||||
# the range of internal IP addresses that can be assigned.
|
# the range of internal IP addresses that can be assigned.
|
||||||
# The VPC can have all IP's from 10.0.0.0 to 10.0.255.255
|
# The VPC can have all IP's from 10.0.0.0 to 10.0.255.255
|
||||||
|
|
@ -1443,7 +1443,7 @@ Mappings:
|
||||||
PublicTwo:
|
PublicTwo:
|
||||||
CIDR: '10.0.1.0/24'
|
CIDR: '10.0.1.0/24'
|
||||||
|
|
||||||
Resources:
|
Resources:
|
||||||
# VPC in which containers will be networked.
|
# VPC in which containers will be networked.
|
||||||
# It has two public subnets, and two private subnets.
|
# It has two public subnets, and two private subnets.
|
||||||
# We distribute the subnets across the first two available subnets
|
# We distribute the subnets across the first two available subnets
|
||||||
|
|
@ -1738,7 +1738,7 @@ Resources:
|
||||||
SecurityGroups:
|
SecurityGroups:
|
||||||
- !Ref EFSServerSecurityGroup
|
- !Ref EFSServerSecurityGroup
|
||||||
|
|
||||||
Outputs:
|
Outputs:
|
||||||
EfsFileStorageId:
|
EfsFileStorageId:
|
||||||
Description: 'The connection endpoint for the database.'
|
Description: 'The connection endpoint for the database.'
|
||||||
Value: !Ref EfsFileStorage
|
Value: !Ref EfsFileStorage
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
export class BaseStackFormation {
|
export class BaseStackFormation {
|
||||||
public static readonly formation: string = ` AWSTemplateFormatVersion: '2010-09-09'
|
public static readonly formation: string = ` AWSTemplateFormatVersion: '2010-09-09'
|
||||||
Description: Game-CI base stack
|
Description: Game-CI base stack
|
||||||
Parameters:
|
Parameters:
|
||||||
EnvironmentName:
|
EnvironmentName:
|
||||||
Type: String
|
Type: String
|
||||||
Default: development
|
Default: development
|
||||||
|
|
@ -15,7 +15,7 @@ Parameters:
|
||||||
# Default: 80
|
# Default: 80
|
||||||
# Description: What port number the application inside the docker container is binding to
|
# Description: What port number the application inside the docker container is binding to
|
||||||
|
|
||||||
Mappings:
|
Mappings:
|
||||||
# Hard values for the subnet masks. These masks define
|
# Hard values for the subnet masks. These masks define
|
||||||
# the range of internal IP addresses that can be assigned.
|
# the range of internal IP addresses that can be assigned.
|
||||||
# The VPC can have all IP's from 10.0.0.0 to 10.0.255.255
|
# The VPC can have all IP's from 10.0.0.0 to 10.0.255.255
|
||||||
|
|
@ -34,7 +34,7 @@ Mappings:
|
||||||
PublicTwo:
|
PublicTwo:
|
||||||
CIDR: '10.0.1.0/24'
|
CIDR: '10.0.1.0/24'
|
||||||
|
|
||||||
Resources:
|
Resources:
|
||||||
# VPC in which containers will be networked.
|
# VPC in which containers will be networked.
|
||||||
# It has two public subnets, and two private subnets.
|
# It has two public subnets, and two private subnets.
|
||||||
# We distribute the subnets across the first two available subnets
|
# We distribute the subnets across the first two available subnets
|
||||||
|
|
@ -329,7 +329,7 @@ Resources:
|
||||||
SecurityGroups:
|
SecurityGroups:
|
||||||
- !Ref EFSServerSecurityGroup
|
- !Ref EFSServerSecurityGroup
|
||||||
|
|
||||||
Outputs:
|
Outputs:
|
||||||
EfsFileStorageId:
|
EfsFileStorageId:
|
||||||
Description: 'The connection endpoint for the database.'
|
Description: 'The connection endpoint for the database.'
|
||||||
Value: !Ref EfsFileStorage
|
Value: !Ref EfsFileStorage
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue