Skip to content

Instantly share code, notes, and snippets.

@midN
Last active December 30, 2018 02:57
Embed
What would you like to do?
medium_eni
Eni:
Type: AWS::EC2::NetworkInterface
Properties:
SourceDestCheck: false
GroupSet: your_sg
SubnetId: your_subnet
PrivateIpAddress: 172.16.13.37
Eip:
Type: AWS::EC2::EIP
Properties:
Domain: vpc
EipAssoc:
Type: AWS::EC2::EIPAssociation
Properties:
AllocationId: !GetAtt Eip.AllocationId
NetworkInterfaceId: !Ref Eni
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment