실습 가이드 링크에서 가이드를 확인할 수 있습니다. EC2 VPC (Optional) 실습 과정을 응용하는 단계입니다. 기본 값은 기본 VPC(172.31.0.0/16)이지만, 기본 VPC를 사용하지 않을 경우에는 VPC를 새롭게 생성한 후 진행합니다. PROD-VPC20.0.0.0/16PROD-VPC…Public subnetPublic subnetEC2EC2VPC Peeringpcx-1VPC Peering…IneternetGatewayIneternet…Viewer does not support full SVG 1.1 VPC
[Terraform] AWS ALB 구성
VPC VPC 생성 처음으로 VPC를 구성합니다. 자신의 환경에 맞게 cidr_block 값을 변경해주세요. # main.tf resource "aws_vpc" "DEV-VPC" { assign_generated_ipv6_cidr_block = false cidr_block = "10.0.0.0/16" enable_dns_hostnames = true enable_dns_support = true instance_tenancy = "default" tags = { Name = "DEV-VPC" Service
[Terraform] AWS 기초
AWS 인프라를 Terraform으로 테스트 구성
[Terraform] Workshop
Terraform 설치 Visial Studio 실행 => Extensions => hashicop terraform 검색 및 설치 Terraform의 버전 확인 terraform versionerraform v0.13.4Your version of Terraform is out of date! The latest versionis 0.14.7. You can update by downloading from https://www.terraform.io/downloads.html Terraform 코드 파일
[Terraform] AWS Provider 설정
AWS CLI설치 및 Provider설정