mirror of
https://github.com/sidpalas/devops-directive-terraform-course.git
synced 2025-12-10 04:41:14 +00:00
22 lines
655 B
HCL
22 lines
655 B
HCL
resource "aws_instance" "instance_1" {
|
|
ami = var.ami
|
|
instance_type = var.instance_type
|
|
security_groups = [aws_security_group.instances.name]
|
|
user_data = <<-EOF
|
|
#!/bin/bash
|
|
echo "Hello, World 1" > index.html
|
|
python3 -m http.server 8080 &
|
|
EOF
|
|
}
|
|
|
|
resource "aws_instance" "instance_2" {
|
|
ami = var.ami
|
|
instance_type = var.instance_type
|
|
security_groups = [aws_security_group.instances.name]
|
|
user_data = <<-EOF
|
|
#!/bin/bash
|
|
echo "Hello, World 2" > index.html
|
|
python3 -m http.server 8080 &
|
|
EOF
|
|
}
|