Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Nov 7, 2024
1 parent de5700e commit e14c969
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

### Pending Release

### v1.2.0

- :rocket: Add SG Names to policy

### v1.1.0

- :rocket: Update to latest alarms package which makes topic conditional
Expand Down
7 changes: 6 additions & 1 deletion cloudformation/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,12 @@ export default {
ServiceSecurityGroup: {
Type: 'AWS::EC2::SecurityGroup',
Properties: {
GroupDescription: cf.join('-', [cf.stackName, 'ec2-sg']),
Tags: [{
Key: 'Name',
Value: cf.join('-', [cf.stackName, 'ecs-service-sg'])
}],
GroupName: cf.join('-', [cf.stackName, 'ecs-service-sg']),
GroupDescription: cf.join('-', [cf.stackName, 'ecs-sg']),
VpcId: cf.importValue(cf.join(['coe-vpc-', cf.ref('Environment'), '-vpc'])),
SecurityGroupIngress: [{
CidrIp: '0.0.0.0/0',
Expand Down
9 changes: 7 additions & 2 deletions cloudformation/lib/efs.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,19 @@ export default {
EFSMountTargetSecurityGroup: {
Type: 'AWS::EC2::SecurityGroup',
Properties: {
VpcId: cf.importValue(cf.join(['coe-vpc-', cf.ref('Environment'), '-vpc'])),
Tags: [{
Key: 'Name',
Value: cf.join('-', [cf.stackName, 'efs-sg'])
}],
GroupName: cf.join('-', [cf.stackName, 'efs-sg']),
GroupDescription: 'EFS to Auth ECS Service',
SecurityGroupIngress: [{
IpProtocol: 'tcp',
FromPort: 2049,
ToPort: 2049,
CidrIp: cf.importValue(cf.join(['coe-vpc-', cf.ref('Environment'), '-vpc-cidr']))
}]
}],
VpcId: cf.importValue(cf.join(['coe-vpc-', cf.ref('Environment'), '-vpc'])),
}
},
EFSAccessPointLDAP: {
Expand Down

0 comments on commit e14c969

Please sign in to comment.