Skip to content

Commit

Permalink
Remove DHCP option set
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Dec 17, 2020
1 parent cf4e120 commit 48a6d38
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/components/Vpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,24 +123,6 @@ export class Vpc extends Component {
}
},

[this.formatCloudFormationId('DHCPOptions')]: {
Type: 'AWS::EC2::DHCPOptions',
Properties: {
DomainName: `${this.stack.region}.compute.internal`,
DomainNameServers: ['AmazonProvidedDNS'],
Tags: [
this.tag('Name', `${this.stackName}-DHCPOptionsSet`),
],
}
},
[this.formatCloudFormationId('DHCPOptionsAssociation')]: {
Type: 'AWS::EC2::VPCDHCPOptionsAssociation',
Properties: {
VpcId: this.fnRef(this.vpcResourceId),
DhcpOptionsId: this.fnRef(this.formatCloudFormationId('DHCPOptions')),
}
},

...nat,
};
}
Expand Down

0 comments on commit 48a6d38

Please sign in to comment.