Skip to content

Commit

Permalink
fix: Removed extra backticks for KMS key in EBS config. (#422)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Bell <[email protected]>
  • Loading branch information
lee-chrisbell and Chris Bell authored Dec 30, 2021
1 parent 5d66571 commit c46b080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ resource "aws_launch_template" "gitlab_runner_instance" {
encrypted = lookup(block_device_mappings.value, "encrypted", true)
iops = lookup(block_device_mappings.value, "iops", null)
throughput = lookup(block_device_mappings.value, "throughput", null)
kms_key_id = lookup(block_device_mappings.value, "`kms_key_id`", null)
kms_key_id = lookup(block_device_mappings.value, "kms_key_id", null)
}
}
}
Expand Down

0 comments on commit c46b080

Please sign in to comment.