-
Notifications
You must be signed in to change notification settings - Fork 0
/
computes.tf
30 lines (27 loc) · 1.01 KB
/
computes.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
// Generated by insterra
module "aws_compute_perseus_lhb" {
source = "upmaru/instellar/aws"
version = "0.9.3"
balancer = false
balancer_deletion_protection = true
balancer_ssh = true
bastion_size = "t3a.micro"
bastion_ssh = true
blueprint = var.identifier
cluster_topology = [
]
global_accelerator = false
identifier = "perseus-lhb"
network_dependencies = module.aws_networking_sombrero_kyg.dependencies
node_detail_revision = 1
node_size = "t3a.medium"
public_subnet_ids = module.aws_networking_sombrero_kyg.public_subnet_ids
publicly_accessible = true
region = var.aws_region
ssh_keys = ["zack-studio", "zack-mbp"]
ssm = true
storage_size = 40
volume_type = "gp3"
vpc_id = module.aws_networking_sombrero_kyg.vpc_id
vpc_ip_range = module.aws_networking_sombrero_kyg.vpc_ip_range
}