forked from pbar1/terraform-aws-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
49 lines (40 loc) · 1.3 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
output "name" {
description = "Name of resources created by this module"
value = var.name
}
output "tags" {
description = "Tags applied to AWS resources created by this module"
value = var.tags
}
output "url" {
description = "URL to reach the Vault cluster at"
value = "https://${aws_route53_record.vault.fqdn}"
}
output "role_arn" {
description = "ARN of the AWS IAM role that Vault runs as"
value = aws_iam_role.vault.arn
}
output "role_name" {
description = "Name of the AWS IAM role that Vault runs as"
value = aws_iam_role.vault.name
}
output "kms_key_id" {
description = "ID of the KMS key that Vault uses for Auto Unseal"
value = aws_kms_key.vault.key_id
}
output "ami_name" {
description = "Name of the AMI used to launch the auto scaling group"
value = data.aws_ami.vault.name
}
output "ami_id" {
description = "ID of the AMI used to launch the auto scaling group"
value = data.aws_ami.vault.id
}
output "ssm_path_vault_root_token" {
description = "Path in SSM Parameter Store to Vault root token"
value = local.ssm_path_vault_root_token
}
output "ssm_path_vault_recovery_keys_b64" {
description = "Path in SSM Parameter Store to Vault recovery keys in base64 format"
value = local.ssm_path_vault_recovery_keys_b64
}