Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit f67f99a

Browse files
authored
Merge pull request #207 from nicgrayson/master
Add iam instance profile outputs
2 parents cdad97f + 849b5f1 commit f67f99a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

modules/vault-cluster/outputs.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ output "launch_config_name" {
1818
value = aws_launch_configuration.launch_configuration.name
1919
}
2020

21+
output "iam_instance_profile_arn" {
22+
value = aws_iam_instance_profile.instance_profile.arn
23+
}
24+
25+
output "iam_instance_profile_id" {
26+
value = aws_iam_instance_profile.instance_profile.id
27+
}
28+
29+
output "iam_instance_profile_name" {
30+
value = aws_iam_instance_profile.instance_profile.name
31+
}
32+
2133
output "iam_role_arn" {
2234
value = aws_iam_role.instance_role.arn
2335
}

0 commit comments

Comments
 (0)