-
Notifications
You must be signed in to change notification settings - Fork 0
/
ec2.yml
78 lines (70 loc) · 1.65 KB
/
ec2.yml
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
70
71
72
73
74
75
76
77
78
Parameters:
amiId:
Type: AWS::EC2::Image::Id
Keypair:
Type: AWS::EC2::KeyPair::KeyName
Vpc:
Type: AWS::EC2::VPC::Id
Subnet:
Type: AWS::EC2::Subnet::Id
Resources:
Instance:
Type: AWS::EC2::Instance
Properties:
ImageId: !Ref amiId
InstanceType: r4.large
KeyName: !Ref Keypair
Monitoring: True
SecurityGroupIds:
- !Ref MySG
SubnetId: !Ref Subnet
IamInstanceProfile: !Ref Profile
MySG:
Type: 'AWS::EC2::SecurityGroup'
Properties:
GroupDescription: MySG
GroupName: !Sub MySG-${AWS::StackName}
SecurityGroupEgress:
- CidrIp: 0.0.0.0/0
FromPort: -1
ToPort: -1
IpProtocol: -1
VpcId: !Ref Vpc
SecurityGroupIngress:
- CidrIp: 0.0.0.0/0
FromPort: -1
ToPort: -1
IpProtocol: -1
Profile:
Type: AWS::IAM::InstanceProfile
Properties:
Path: "/"
Roles:
- !Ref AdminRole
AdminRole:
Type: AWS::IAM::Role
Properties:
RoleName: !Sub ${AWS::StackName}-AllAccess
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
Service:
- "ec2.amazonaws.com"
Action:
- "sts:AssumeRole"
Path: "/"
Policies:
- PolicyName: !Sub ${AWS::StackName}-Admin
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- "*"
Effect: "Allow"
Resource: "*"
Outputs:
IP:
Value: !GetAtt Instance.PrivateIp
Description: Ip Address