반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 조합론
- 시뮬레이션
- KMP알고리즘
- 다이나믹 프로그래밍
- 연결리스트 정렬
- 문자열
- 정렬
- 프로그래머스
- 정수론
- 임의 정밀도 / 큰 수 연산
- 구현
- 이분 탐색
- 스택
- 브루트포스 알고리즘
- 해시를 사용한 집합과 맵
- 재귀
- LeetCode 83번
- 자료 구조
- 수학
- 문자열제곱
- 유클리드 호제법
- Queue
- 사칙연산
- 연결리스트 중복제거
- LeetCode 83 c언어
- 큐
- 별 찍기
- 큰 수 연산
- 실패함수
- LeetCode Remove Duplicates from Sorted List in c
Archives
- Today
- Total
hahn
[Terraform]VPC, Subnet, IGW, EC2 생성 본문
728x90
반응형
provider "aws" {
region = "ap-northeast-2"
}
resource "aws_instance" "example" {
ami = "ami-XXXXXXXXXXXXXXX"
instance_type = "t2.micro"
subnet_id = aws_subnet.public.id
vpc_security_group_ids = [aws_security_group.sg.id]
associate_public_ip_address = true
user_data = <<-EOF
#!/bin/bash
sudo apt-get update -y
sudo apt-get install -y apache2
echo "terraform-apache-test" | sudo tee /var/www/html/index.html
EOF
tags = {
Name = "terraform-ec2"
}
}
resource "aws_vpc" "vpc_init" {
cidr_block = "172.16.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
tags = {
Name = "terraform-vpc"
}
}
resource "aws_subnet" "public" {
vpc_id = aws_vpc.vpc_init.id
cidr_block = "172.16.1.0/24"
availability_zone = "ap-northeast-2a"
tags = {
Name = "terraform-public"
}
}
resource "aws_route_table" "rt" {
vpc_id = aws_vpc.vpc_init.id
tags = {
Name = "terraform-rt"
}
}
resource "aws_route_table_association" "rt-association" {
subnet_id = aws_subnet.public.id
route_table_id = aws_route_table.rt.id
}
resource "aws_route" "addrole" {
route_table_id = aws_route_table.rt.id
destination_cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.igw.id
}
resource "aws_subnet" "private" {
vpc_id = aws_vpc.vpc_init.id
cidr_block = "172.16.2.0/24"
availability_zone = "ap-northeast-2a"
tags = {
Name = "terraform-private"
}
}
resource "aws_internet_gateway" "igw" {
vpc_id = aws_vpc.vpc_init.id
tags = {
Name = "terraform-igw"
}
}
resource "aws_security_group" "sg" {
vpc_id = aws_vpc.vpc_init.id
name = "terraform-sg"
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
728x90
반응형
'클라우드 > Terraform' 카테고리의 다른 글
[Terraform]Mutable, Immutable (0) | 2024.08.06 |
---|---|
[Terraform]state (0) | 2024.08.06 |
[Terraform] 변수 사용하기 (0) | 2024.08.06 |
[Terraform] VPC 생성 (0) | 2024.08.06 |
[Terraform] AWS provider 생성 (0) | 2024.08.06 |