-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathworkstations.tf
35 lines (32 loc) · 884 Bytes
/
workstations.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
module "heart-workstations" {
source = "./workstations"
suit = "hearts"
count = 13
automate_fqdn = "${aws_route53_record.automate.name}"
aws_sshkey = "${var.aws_sshkey}"
contact_tag = "${var.contact_tag}"
}
module "diamonds-workstations" {
source = "./workstations"
suit = "diamonds"
count = 13
automate_fqdn = "${aws_route53_record.automate.name}"
aws_sshkey = "${var.aws_sshkey}"
contact_tag = "${var.contact_tag}"
}
module "spades-workstations" {
source = "./workstations"
suit = "spades"
count = 13
automate_fqdn = "${aws_route53_record.automate.name}"
aws_sshkey = "${var.aws_sshkey}"
contact_tag = "${var.contact_tag}"
}
module "clubs-workstations" {
source = "./workstations"
suit = "clubs"
count = 13
automate_fqdn = "${aws_route53_record.automate.name}"
aws_sshkey = "${var.aws_sshkey}"
contact_tag = "${var.contact_tag}"
}