Skip to content

Commit 31ab62b

Browse files
Fix- Fixed typo for external EBS attachment block. (#64)
* fix- fixed typo for external ebs attachment block * fix- fixed tflints --------- Co-authored-by: Anmol Nagpal <[email protected]>
1 parent 7e21a41 commit 31ab62b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

main.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -219,14 +219,14 @@ resource "aws_instance" "default" {
219219
dynamic "ebs_block_device" {
220220
for_each = var.ebs_block_device
221221
content {
222-
delete_on_termination = lookup(ebs_block_device.value, "delete_on_termination", null)
222+
delete_on_termination = lookup(ebs_block_device.value, "delete_on_termination", true)
223223
device_name = ebs_block_device.value.device_name
224-
encrypted = lookup(ebs_block_device.value, "encrypted", null)
224+
encrypted = lookup(ebs_block_device.value, "encrypted", true)
225225
iops = lookup(ebs_block_device.value, "iops", null)
226-
kms_key_id = var.kms_key_id == "" ? join("", aws_kms_key.default[*].arn) : lookup(root_block_device.value, "kms_key_id", null)
226+
kms_key_id = var.kms_key_id == "" ? join("", aws_kms_key.default[*].arn) : lookup(ebs_block_device.value, "kms_key_id", null)
227227
snapshot_id = lookup(ebs_block_device.value, "snapshot_id", null)
228228
volume_size = lookup(ebs_block_device.value, "volume_size", null)
229-
volume_type = lookup(ebs_block_device.value, "volume_type", null)
229+
volume_type = lookup(ebs_block_device.value, "volume_type", "gp2")
230230
throughput = lookup(ebs_block_device.value, "throughput", null)
231231
tags = merge(module.labels.tags,
232232
{

versions.tf

+4
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@ terraform {
77
source = "hashicorp/aws"
88
version = ">= 5.13.1"
99
}
10+
tls = {
11+
source = "hashicorp/tls"
12+
version = ">= 4.0"
13+
}
1014
}
1115
}

0 commit comments

Comments
 (0)