-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathusers.tf
32 lines (27 loc) · 1.04 KB
/
users.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
module "hector_rivas_aws_admin_keytwine_com" {
source = "./aws-iam-user-init"
name = "[email protected]"
pgp_key = "${var.hector_pgp_public_key}"
account_id = "${var.root_account_id}"
}
output "hector_rivas_aws_admin_keytwine_com_credentials_sh" {
value = "${module.hector_rivas_aws_admin_keytwine_com.credentials_sh}"
}
module "hector_rivas_aws_dev_keytwine_com" {
source = "./aws-iam-user-init"
name = "[email protected]"
pgp_key = "${var.hector_pgp_public_key}"
account_id = "${var.root_account_id}"
}
output "hector_rivas_aws_dev_keytwine_com_credentials_sh" {
value = "${module.hector_rivas_aws_dev_keytwine_com.credentials_sh}"
}
module "graciafdez_aws_dev_keytwine_com" {
source = "./aws-iam-user-init"
name = "[email protected]"
pgp_key = "${var.gfl_pgp_public_key}"
account_id = "${var.root_account_id}"
}
output "graciafdez_aws_dev_keytwine_com_credentials_sh" {
value = "${module.graciafdez_aws_dev_keytwine_com.credentials_sh}"
}