Terraform Registry
GitHub - terraform-aws-modules/terraform-aws-ec2-instance: Terraform module which creates EC2 instance(s) on AWS 🇺🇦
Single EC2 Instance
module "ec2_instance" {
source = "terraform-aws-modules/ec2-instance/aws"
name = "single-instance"
instance_type = "t2.micro"
key_name = "user1" #키페어 이름 (이 필드도 키 페어 받아서 자동 제공?
monitoring = true #
#여기서부턴 default로 제공
vpc_security_group_ids = ["sg-12345678"]
subnet_id = "subnet-eddcdzz4"
tags = {
Terraform = "true"
Environment = "dev"
}
}
Multiple EC2 Instance
module "ec2_instance" {
source = "terraform-aws-modules/ec2-instance/aws"
for_each = toset(["one", "two", "three"])
name = "instance-${each.key}"
instance_type = "t2.micro"
key_name = "user1"
monitoring = true
#여기서부턴 기본 제공
vpc_security_group_ids = ["sg-12345678"]
subnet_id = "subnet-eddcdzz4"
tags = {
Terraform = "true"
Environment = "dev"
}
}
Spot EC2 Instance
module "ec2_instance" {
source = "terraform-aws-modules/ec2-instance/aws"
name = "spot-instance"
create_spot_instance = true
spot_price = "0.60"
spot_type = "persistent"
instance_type = "t2.micro"
key_name = "user1"
monitoring = true
#여기서부터 기본 제공
vpc_security_group_ids = ["sg-12345678"]
subnet_id = "subnet-eddcdzz4"
tags = {
Terraform = "true"
Environment = "dev"
}
}