generated from codeforamerica/tofu-modules-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
52 lines (40 loc) · 1.19 KB
/
main.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
resource "random_shuffle" "subnet" {
input = var.private_subnet_ids
result_count = 1
}
module "security_group" {
source = "terraform-aws-modules/security-group/aws"
version = "~> 5.3"
name = "${local.prefix}-bastion"
vpc_id = var.vpc_id
# Allow all egress.
egress_rules = ["all-all"]
tags = merge({ service = "bastion" }, var.tags)
}
resource "aws_instance" "this" {
ami = data.aws_ami.bastion.id
instance_type = var.instance_type
vpc_security_group_ids = [module.security_group.security_group_id]
iam_instance_profile = "AmazonSSMRoleForInstancesQuickSetup"
associate_public_ip_address = false
key_name = local.key_pair_name
subnet_id = random_shuffle.subnet.result[0]
monitoring = true
metadata_options {
http_endpoint = "enabled"
http_tokens = "required"
}
root_block_device {
encrypted = true
volume_size = 10
kms_key_id = aws_kms_key.this.arn
}
tags = merge({
Name = "${local.prefix}-bastion"
service = "bastion"
}, var.tags)
volume_tags = merge({ service = "bastion" }, var.tags)
lifecycle {
create_before_destroy = true
}
}