We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0059e4 commit ca27666Copy full SHA for ca27666
main.tf
@@ -45,14 +45,15 @@ resource "aws_instance" "testing_vm" {
45
key_name = var.ami_key_pair_name # This is the key as known in the ec2 key_pairs
46
instance_type = var.instance_type
47
tags = {
48
- Environment = "${var.environment}"
49
- Name = "${var.benchmark_os}-${var.benchmark_type}"
50
- repository = "${var.repository}"
+ Environment = "${var.environment}"
+ Name = "${var.benchmark_os}-${var.benchmark_type}"
+ repository = "${var.repository}"
51
}
52
vpc_security_group_ids = [aws_security_group.github_actions.id]
53
subnet_id = aws_subnet.Main.id
54
metadata_options {
55
- http_tokens = "required"
+ http_tokens = "required"
56
+ http_endpoint = "enabled"
57
58
root_block_device {
59
delete_on_termination = true
0 commit comments