Chris Mague 056b624a6c update to be compatable after 0.13 | 4 년 전 | |
---|---|---|
test | 4 년 전 | |
.gitignore | 5 년 전 | |
.terraform-version | 4 년 전 | |
README.md | 4 년 전 | |
main.tf | 5 년 전 | |
outputs.tf | 5 년 전 | |
private_subnets.tf | 4 년 전 | |
public_subnets.tf | 5 년 전 | |
variables.tf | 5 년 전 | |
versions.tf | 5 년 전 | |
vpc.tf | 5 년 전 |
aws ec2 create-key-pair --profile redislabs --key-name maguec1 --region us-west-1 \
| jq .KeyMaterial | awk '{gsub(/\\n/,"\n")}1' | \
sed -e s/\"//g >> ~/.ssh/maguec1.pem
chmod 0600 ~/.ssh/maguec1.pem
This keypair name should match the name of the VPC
provider "aws" {
region = var.region
profile = var.profile
}
module "vpc" {
source = "git@github.com:shokunin/tfmodule-aws-2tier-vpc?ref=master"
region = var.region
profile = var.profile
vpc-name = var.vpc-name
vpc-cidr = var.vpc-cidr
vpc-azs = var.vpc-azs
enable-private = false
common-tags = {
"Owner" = "maguec"
"Project" = "example_terraform"
}
}