♻ Terraform(테라폼)/Module-EC2 (2) 썸네일형 리스트형 Terraform을 활용한 EC2 인스턴스 생성 및 아파치 웹서버 설치 # Terraform을 활용한 EC2 인스턴스 생성 후 아파치 웹서버를 설치하여 확인을 해보자. 1. 목표 아키텍처 확인하기 - 이해를 돕기 위해 주요 리소스에 넘버링을 하였다. - EC2 인스턴그 관련 리소스만 설명을 하면 아래와 같다. (파란색 바탕의 넘버링 확인) ① EIP : EC2 인스턴스가 사용할 EIP를 생성한다. ② EC2 인스턴스 : 퍼블릭 망에 존재하는 EC2 인스턴스이다. ②-① : EC2 인스턴스에 구성될 Apache WebServer이다. ③ PrivateKey : RSA 알고리즘으로 구성된 TLS Private Key이다. ④ 보안그룹 : 해당 EC2 인스턴스에서 사용할 보안그룹을 생성한다. (인바운드와 아웃바운드도 설정) ⑤ KeyPair :. pem으로 구성된 Key_Pair.. 테라폼 모듈을 2개 사용하는 방법 When you declare modules as follows in ./main.tf: module "networking" { source = "./modules/networking" } module "security" { source = "./modules/security" } The references to module.networking and module.security are only in scope for local variables, resources, data sources, outputs, and expressions in TF files in the same directory (./*.tf in this case). Since ./modules/security/security.tf i.. 이전 1 다음