Skip to content

Commit ee6e12e

Browse files
committed
Update EC2 instance type
1 parent 14782a4 commit ee6e12e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

EnvironmentSetup/CloudFormationSetupProject/cloudformation.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"BetaInstanceType" : {
1616
"Type" : "String",
1717
"Description" : "The EC2 instance type to use when creating the application servers",
18-
"Default" : "m1.small"
18+
"Default" : "t2.small"
1919
},
2020
"ProdInstanceType" : {
2121
"Type" : "String",
2222
"Description" : "The EC2 instance type to use when creating the application servers",
23-
"Default" : "m1.small"
23+
"Default" : "t2.medium"
2424
},
2525
"EC2KeyName" : {
2626
"Type" : "AWS::EC2::KeyPair::KeyName",

EnvironmentSetup/EnvironmentSetup.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Param(
77
# The instance type for the beta stage
88
[Parameter()]
99
[string]
10-
$betaInstanceType = "m1.small",
10+
$betaInstanceType = "t2.small",
1111

1212
# The instance type for the prod stage
1313
[Parameter()]
1414
[string]
15-
$prodInstanceType = "m1.small",
15+
$prodInstanceType = "t2.medium",
1616

1717
# true or false if you want the RDP port opened.
1818
[Parameter()]
@@ -127,6 +127,8 @@ function ProcessInput([string]$betaInstanceType,[string]$prodInstanceType,[strin
127127
("CodePipeline environment setup complete")
128128
("Beta Stage DNS: " + $betaDNS)
129129
("Prod Stage DNS: " + $prodDNS)
130+
("S3 Bucket for Pipeline Source: " + $bucketName)
131+
("S3 Object Key for Pipeline Source: aws-blog-net-exploring-aspnet-core.zip")
130132
}
131133

132134

0 commit comments

Comments
 (0)