-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
96 lines (80 loc) · 2.33 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
provider "aws" {
region = "us-east-1"
}
resource "aws_key_pair" "ssh_key" {
key_name = "primary_key"
public_key = file("~/.ssh/id_rsa.pub")
}
resource "aws_servicecatalogappregistry_application" "s3_playground" {
name = "S3Playground"
description = "Application for managing S3 resources"
}
resource "aws_s3_bucket" "s3_playground_bucket" {
bucket = "s3-playground-test" # Ensure this bucket name is globally unique
force_destroy = true
tags = {
"Environment" = "Development"
"Application" = aws_servicecatalogappregistry_application.s3_playground.name
"App" = aws_servicecatalogappregistry_application.s3_playground.name
}
}
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
}
resource "aws_security_group" "all_outbound" {
name = "all_outbound"
vpc_id = aws_vpc.main.id
tags = {
"Environment" = "Development"
"Application" = aws_servicecatalogappregistry_application.s3_playground.name
"App" = aws_servicecatalogappregistry_application.s3_playground.name
}
}
resource "aws_vpc_security_group_egress_rule" "example" {
security_group_id = aws_security_group.all_outbound.id
cidr_ipv4 = "0.0.0.0/0"
to_port = -1
}
resource "aws_network_interface" "test" {
subnet_id = aws_subnet.public_a.id
private_ips = ["10.0.0.50"]
security_groups = [aws_security_group.web.id]
attachment {
instance = aws_instance.test.id
device_index = 1
}
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"] # Canonical
}
resource "aws_instance" "ec2_playground" {
key_name = aws_key_pair.example.key_name
ami = data.aws_ami.ubuntu.id
instance_type = "t3.micro"
connection {
type = "ssh"
user = "ubuntu"
private_key = file("~/.ssh/terraform")
host = self.public_ip
}
user_data = <<-EOL
#!/bin/bash
echo 'ubuntu:ubuntu' | sudo chpasswd
touch /home/ubuntu/setup_complete
EOL
tags = {
Name = "Playground"
"Environment" = "Development"
"Application" = aws_servicecatalogappregistry_application.s3_playground.name
"App" = aws_servicecatalogappregistry_application.s3_playground.name
}
}