-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
75 lines (60 loc) · 1.99 KB
/
outputs.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
output "kms_id" {
description = "kms id"
value = concat(aws_kms_key.vertica_kms_key.*.id, [""])[0]
}
output "kms_arn" {
description = "kms arn"
value = concat(aws_kms_key.vertica_kms_key.*.arn, [""])[0]
}
output "backup_bucket_arn" {
description = "backup bucket arn"
value = module.backup_bucket.this_s3_bucket_arn
}
output "backup_bucket_id" {
description = "backup bucket id"
value = module.backup_bucket.this_s3_bucket_id
}
output "eon_bucket_id" {
description = "eon bucket id"
value = module.eon_bucket.this_s3_bucket_id
}
output "eon_bucket_arn" {
description = "eon bucket arn"
value = module.eon_bucket.this_s3_bucket_arn
}
output "instance_profile_arn" {
description = "instance profile arn"
value = concat(aws_iam_instance_profile.vertica_instance_profile.*.arn, [""])[0]
}
output "instance_profile_name" {
description = "instance profile name"
value = concat(aws_iam_instance_profile.vertica_instance_profile.*.name, [""])[0]
}
output "instance_role_arn" {
description = "instance role arn"
value = concat(aws_iam_role.vertica_instance_role.*.arn, [""])[0]
}
output "instance_role_name" {
description = "instance role name"
value = concat(aws_iam_role.vertica_instance_role.*.name, [""])[0]
}
output "security_group_id" {
description = "The ID of the security group asg"
value = module.asg_sg.this_security_group_id
}
output "cloudformation_stack_name" {
description = "CF stack name"
value = concat(aws_cloudformation_stack.edw_access.*.name, [""])[0]
}
output "cloudformation_fm_stack_name" {
description = "CF stack name"
value = concat(aws_cloudformation_stack.edw_fm_access.*.name, [""])[0]
}
output "role_arn" {
description = "role arn"
value = concat(aws_cloudformation_stack.edw_access.*.outputs.EdwRoleARN, [""])[0]
}
output "role_fm_arn" {
description = "role fm arn"
value = concat(aws_cloudformation_stack.edw_fm_access.*.outputs.EdwRoleARN, [""])[0]
}