-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathoutputs.yaml
More file actions
69 lines (60 loc) · 1.5 KB
/
Copy pathoutputs.yaml
File metadata and controls
69 lines (60 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
AWSTemplateFormatVersion: "2010-09-09"
Description: AWS CloudFormation workshop - Outputs (uksb-1q9p31idr) (tag:outputs).
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: Amazon EC2 Configuration
Parameters:
- AmiID
ParameterLabels:
AmiID:
default: Amazon Machine Image ID
Parameters:
EnvironmentType:
Description: Specify the Environment type of the stack.
Type: String
AllowedValues:
- Dev
- Test
- Prod
Default: Test
ConstraintDescription: Specify either Dev, Test or Prod.
AmiID:
Description: The ID of the AMI.
Type: AWS::EC2::Image::Id
Mappings:
EnvironmentToInstanceType:
Dev:
InstanceType: t2.nano
Test:
InstanceType: t2.micro
Prod:
InstanceType: t2.small
Resources:
WebServerInstance:
Type: AWS::EC2::Instance
Properties:
ImageId: !Ref AmiID
InstanceType: !FindInMap
- EnvironmentToInstanceType
- !Ref EnvironmentType
- InstanceType
Tags:
- Key: Name
Value: !Join
- '-'
- - !Ref EnvironmentType
- webserver
WebServerEIP:
Type: AWS::EC2::EIP
Properties:
Domain: vpc
InstanceId: !Ref WebServerInstance
Outputs:
WebServerPublicDNS:
Description: Public DNS of EC2 instance
Value: !GetAtt WebServerInstance.PublicDnsName
WebServerElasticIP:
Description: Elastic IP assigned to EC2
Value: !Ref WebServerEIP