Skip to content

Instantly share code, notes, and snippets.

View kmansoft's full-sized avatar

Kostya Vasilyev kmansoft

View GitHub Profile
@kmansoft
kmansoft / simple-3.yaml
Created May 11, 2022 03:44
AWS CloudFormation - two network interfaces - public and private
AWSTemplateFormatVersion: '2010-09-09'
Description: 'Test - simple 2 network interfaces'
Parameters:
KeyName:
Description: 'Key Pair name'
Type: 'AWS::EC2::KeyPair::KeyName'
Default: kman
Resources:
VPC:
Type: 'AWS::EC2::VPC'
@kmansoft
kmansoft / simple-4.yaml
Created May 11, 2022 19:09
Creating two network interfaces, one with EIP
AWSTemplateFormatVersion: '2010-09-09'
Description: 'Test - simple 2 network interfaces'
Parameters:
KeyName:
Description: 'Key Pair name'
Type: 'AWS::EC2::KeyPair::KeyName'
Default: kman
Resources:
VPC:
Type: 'AWS::EC2::VPC'