forked from zigbee-alliance/distributed-compliance-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
43 lines (34 loc) · 1004 Bytes
/
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
data "aws_ami" "ubuntu" {
most_recent = true
owners = ["099720109477"]
filter {
name = "name"
values = ["ubuntu-minimal/images/hvm-ssd/ubuntu-focal-20.04-amd64-minimal-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
}
resource "aws_key_pair" "key_pair" {
public_key = file(var.ssh_public_key_path)
}
resource "aws_instance" "this_nodes" {
count = var.nodes_count
ami = data.aws_ami.ubuntu.id
instance_type = "t3.medium"
subnet_id = element(module.this_vpc.public_subnets, count.index % length(module.this_vpc.public_subnets))
vpc_security_group_ids = [
module.this_dev_sg.security_group_id,
module.this_private_sg.security_group_id
]
key_name = aws_key_pair.key_pair.id
monitoring = true
tags = {
Name = "Observer Node [${count.index}]"
}
root_block_device {
encrypted = true
volume_size = 30
}
}