Skip to content

Commit 0a1f586

Browse files
Bhomeshh1manshu98
andauthored
fix: Updated the object-based configuration in variable.tf (#79)
* fix: Updated the object-based configuration in variable.tf * fix: Updated the object-based configuration in variable.tf * fix: Updated the object-based configuration in variable.tf --------- Co-authored-by: Himanshu Ahirwar <[email protected]>
1 parent 5386009 commit 0a1f586

File tree

8 files changed

+183
-303
lines changed

8 files changed

+183
-303
lines changed

.gitignore

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1-
# ignored files
1+
# Terraform state files - Contains sensitive infrastructure state information
22
*.tfstate
33
*.tfstate.backup
4+
5+
# Local Terraform directory - Contains downloaded providers and modules
46
.terraform
7+
8+
# IDE settings directory for IntelliJ
59
.idea
10+
11+
# IntelliJ project files
612
*.iml
13+
14+
# Go dependency file
715
go.sum
16+
17+
# Terraform lock file - Contains provider version constraints
818
*.terraform.lock.hcl
19+
20+
# Terraform crash log file - Generated during crashes
921
crash.log
22+
23+
# Variable definitions files - May contain sensitive values
24+
*.tfvars

README.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ usage: |-
8282
#Root Volume
8383
root_block_device = [
8484
{
85-
volume_type = "gp2"
85+
volume_type = "gp3"
8686
volume_size = 15
8787
delete_on_termination = true
8888
}
8989
]
9090
9191
#EBS Volume
9292
ebs_volume_enabled = false
93-
ebs_volume_type = "gp2"
93+
ebs_volume_type = "gp3"
9494
ebs_volume_size = 30
9595
9696
#Tags
@@ -131,15 +131,15 @@ usage: |-
131131
#Root Volume
132132
root_block_device = [
133133
{
134-
volume_type = "gp2"
134+
volume_type = "gp3"
135135
volume_size = 15
136136
delete_on_termination = true
137137
}
138138
]
139139
140140
#EBS Volume
141141
ebs_volume_enabled = true
142-
ebs_volume_type = "gp2"
142+
ebs_volume_type = "gp3"
143143
ebs_volume_size = 30
144144
145145
#Tags
@@ -187,15 +187,15 @@ usage: |-
187187
#Root Volume
188188
root_block_device = [
189189
{
190-
volume_type = "gp2"
190+
volume_type = "gp3"
191191
volume_size = 15
192192
delete_on_termination = true
193193
}
194194
]
195195
196196
#EBS Volume
197197
ebs_volume_enabled = true
198-
ebs_volume_type = "gp2"
198+
ebs_volume_type = "gp3"
199199
ebs_volume_size = 30
200200
201201
#Tags

docs/io.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
| ebs\_optimized | If true, the launched EC2 instance will be EBS-optimized. | `bool` | `false` | no |
2929
| ebs\_volume\_enabled | Flag to control the ebs creation. | `bool` | `false` | no |
3030
| ebs\_volume\_size | Size of the EBS volume in gigabytes. | `number` | `30` | no |
31-
| ebs\_volume\_type | The type of EBS volume. Can be standard, gp2 or io1. | `string` | `"gp2"` | no |
31+
| ebs\_volume\_type | The type of EBS volume. Can be standard, gp3 or io1. | `string` | `"gp3"` | no |
3232
| egress\_ipv4\_cidr\_block | List of CIDR blocks. Cannot be specified with source\_security\_group\_id or self. | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
3333
| egress\_ipv4\_from\_port | Egress Start port (or ICMP type number if protocol is icmp or icmpv6). | `number` | `0` | no |
3434
| egress\_ipv4\_protocol | Protocol. If not icmp, icmpv6, tcp, udp, or all use the protocol number | `string` | `"-1"` | no |

examples/basic/example.tf

+14-10
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,19 @@ module "ec2" {
1616

1717
#instance
1818
instance_count = 1
19-
ami = "ami-08d658f84a6d84a80"
20-
instance_type = "c4.xlarge"
19+
instance_configuration = {
20+
ami = "ami-08d658f84a6d84a80"
21+
instance_type = "t4g.small"
22+
23+
#Root Volume
24+
root_block_device = [
25+
{
26+
volume_type = "gp3"
27+
volume_size = 15
28+
delete_on_termination = true
29+
}
30+
]
31+
}
2132

2233
#Networking
2334
subnet_ids = ["subnet-xxxxxxxx"]
@@ -28,14 +39,7 @@ module "ec2" {
2839
#IAM
2940
iam_instance_profile = "iam-profile-xxxxxxxxx"
3041

31-
#Root Volume
32-
root_block_device = [
33-
{
34-
volume_type = "gp2"
35-
volume_size = 15
36-
delete_on_termination = true
37-
}
38-
]
42+
3943
#Tags
4044
instance_tags = { "snapshot" = true }
4145

examples/complete/example.tf

+18-13
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,21 @@ module "ec2" {
9191
ssh_allowed_ports = [22]
9292
#Instance
9393
instance_count = 1
94-
ami = "ami-0f8e81a3da6e2510a"
95-
instance_type = "t2.nano"
94+
instance_configuration = {
95+
ami = "ami-0f8e81a3da6e2510a"
96+
instance_type = "t4g.small"
97+
98+
#Root Volume
99+
root_block_device = [
100+
{
101+
volume_type = "gp3"
102+
volume_size = 15
103+
delete_on_termination = true
104+
}
105+
]
106+
#Mount EBS With User Data
107+
user_data = file("user-data.sh")
108+
}
96109

97110
#Keypair
98111
public_key = ""
@@ -103,23 +116,15 @@ module "ec2" {
103116
#IAM
104117
iam_instance_profile = module.iam-role.name
105118

106-
#Root Volume
107-
root_block_device = [
108-
{
109-
volume_type = "gp2"
110-
volume_size = 15
111-
delete_on_termination = true
112-
}
113-
]
119+
114120

115121
#EBS Volume
116122
ebs_volume_enabled = true
117-
ebs_volume_type = "gp2"
123+
ebs_volume_type = "gp3"
118124
ebs_volume_size = 30
119125

120126
#Tags
121127
instance_tags = { "snapshot" = true }
122128

123-
#Mount EBS With User Data
124-
user_data = file("user-data.sh")
129+
125130
}

examples/spot_instance/example.tf

+18-15
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,23 @@ module "spot-ec2" {
1717
public_key = ""
1818

1919
# Spot-instance
20-
spot_price = "0.3"
21-
spot_wait_for_fulfillment = true
22-
spot_type = "persistent"
23-
spot_instance_interruption_behavior = "terminate"
24-
spot_instance_enabled = true
25-
spot_instance_count = 1
26-
instance_type = "c4.xlarge"
20+
spot_configuration = {
21+
spot_price = "0.3"
22+
wait_for_fulfillment = true
23+
spot_type = "persistent"
24+
instance_interruption_behavior = "terminate"
25+
spot_instance_enabled = true
26+
spot_instance_count = 1
27+
instance_type = "t4g.small"
28+
29+
root_block_device = [
30+
{
31+
volume_type = "gp3"
32+
volume_size = 15
33+
delete_on_termination = true
34+
}
35+
]
36+
}
2737

2838
#Networking
2939
subnet_ids = ["subnet-xxxxxxxx"]
@@ -32,17 +42,10 @@ module "spot-ec2" {
3242
iam_instance_profile = "iam-profile-xxxxxxxxx"
3343

3444
#Root Volume
35-
root_block_device = [
36-
{
37-
volume_type = "gp2"
38-
volume_size = 15
39-
delete_on_termination = true
40-
}
41-
]
4245

4346
#EBS Volume
4447
ebs_volume_enabled = true
45-
ebs_volume_type = "gp2"
48+
ebs_volume_type = "gp3"
4649
ebs_volume_size = 30
4750

4851
#Tags

0 commit comments

Comments
 (0)