-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathec2.tf
67 lines (62 loc) · 2.04 KB
/
ec2.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
resource "aws_instance" "nat_bridge" {
launch_template {
id = "lt-0fd66da1528b87303"
}
ami = "ami-0b8a83c274c0fd9d2"
associate_public_ip_address = false
availability_zone = "ap-southeast-1b"
disable_api_stop = false
disable_api_termination = false
ebs_optimized = false
get_password_data = false
hibernation = false
host_id = null
instance_initiated_shutdown_behavior = "stop"
instance_lifecycle = null
instance_type = "t2.micro"
ipv6_address_count = 0
key_name = "inside-eks-natsetup"
monitoring = false
outpost_arn = null
password_data = null
placement_group = null
placement_partition_number = 0
public_dns = null
public_ip = null
secondary_private_ips = []
security_groups = []
source_dest_check = false
spot_instance_request_id = null
subnet_id = "subnet-55be7319"
tags = {
"Name" = "nat_bridge"
}
tags_all = {
"Name" = "nat_bridge"
}
tenancy = "default"
vpc_security_group_ids = [
"sg-0c051fd541df9a34e",
]
credit_specification {
cpu_credits = "standard"
}
enclave_options {
enabled = false
}
metadata_options {
http_endpoint = "enabled"
http_protocol_ipv6 = "disabled"
http_put_response_hop_limit = 1
http_tokens = "optional"
instance_metadata_tags = "disabled"
}
root_block_device {
delete_on_termination = true
encrypted = true
tags = {}
tags_all = {}
throughput = 0
volume_size = 8
}
}