|
| 1 | +################################### |
| 2 | +## Virtual Machine Module - Main ## |
| 3 | +################################### |
| 4 | + |
| 5 | +# Create Elastic IP for the EC2 instance |
| 6 | +resource "aws_eip" "linux-eip" { |
| 7 | + vpc = true |
| 8 | + tags = { |
| 9 | + Name = "${lower(var.app_name)}-${var.app_environment}-linux-eip" |
| 10 | + Environment = var.app_environment |
| 11 | + } |
| 12 | +} |
| 13 | + |
| 14 | +# Create EC2 Instance |
| 15 | +resource "aws_instance" "linux-server" { |
| 16 | + ami = data.aws_ami.ubuntu-linux-1804.id |
| 17 | + instance_type = var.linux_instance_type |
| 18 | + subnet_id = aws_subnet.public-subnet.id |
| 19 | + vpc_security_group_ids = [aws_security_group.aws-linux-sg.id] |
| 20 | + associate_public_ip_address = var.linux_associate_public_ip_address |
| 21 | + source_dest_check = false |
| 22 | + key_name = aws_key_pair.key_pair.key_name |
| 23 | + user_data = file("aws-user-data.sh") |
| 24 | + |
| 25 | + # root disk |
| 26 | + root_block_device { |
| 27 | + volume_size = var.linux_root_volume_size |
| 28 | + volume_type = var.linux_root_volume_type |
| 29 | + delete_on_termination = true |
| 30 | + encrypted = true |
| 31 | + } |
| 32 | + |
| 33 | + # extra disk |
| 34 | + ebs_block_device { |
| 35 | + device_name = "/dev/xvda" |
| 36 | + volume_size = var.linux_data_volume_size |
| 37 | + volume_type = var.linux_data_volume_type |
| 38 | + encrypted = true |
| 39 | + delete_on_termination = true |
| 40 | + } |
| 41 | + |
| 42 | + tags = { |
| 43 | + Name = "${lower(var.app_name)}-${var.app_environment}-linux-server" |
| 44 | + Environment = var.app_environment |
| 45 | + } |
| 46 | +} |
| 47 | + |
| 48 | +# Associate Elastic IP to Linux Server |
| 49 | +resource "aws_eip_association" "linux-eip-association" { |
| 50 | + instance_id = aws_instance.linux-server.id |
| 51 | + allocation_id = aws_eip.linux-eip.id |
| 52 | +} |
| 53 | + |
| 54 | +# Define the security group for the Linux server |
| 55 | +resource "aws_security_group" "aws-linux-sg" { |
| 56 | + name = "${lower(var.app_name)}-${var.app_environment}-linux-sg" |
| 57 | + description = "Allow incoming HTTP connections" |
| 58 | + vpc_id = aws_vpc.vpc.id |
| 59 | + |
| 60 | + ingress { |
| 61 | + from_port = 80 |
| 62 | + to_port = 80 |
| 63 | + protocol = "tcp" |
| 64 | + cidr_blocks = ["0.0.0.0/0"] |
| 65 | + description = "Allow incoming HTTP connections" |
| 66 | + } |
| 67 | + |
| 68 | + ingress { |
| 69 | + from_port = 22 |
| 70 | + to_port = 22 |
| 71 | + protocol = "tcp" |
| 72 | + cidr_blocks = ["0.0.0.0/0"] |
| 73 | + description = "Allow incoming SSH connections" |
| 74 | + } |
| 75 | + |
| 76 | + egress { |
| 77 | + from_port = 0 |
| 78 | + to_port = 0 |
| 79 | + protocol = "-1" |
| 80 | + cidr_blocks = ["0.0.0.0/0"] |
| 81 | + } |
| 82 | + |
| 83 | + tags = { |
| 84 | + Name = "${lower(var.app_name)}-${var.app_environment}-linux-sg" |
| 85 | + Environment = var.app_environment |
| 86 | + } |
| 87 | +} |
0 commit comments