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

Commit

Permalink
Merge pull request #72 from nicgrayson/master
Browse files Browse the repository at this point in the history
add aws iam instance profile outputs
  • Loading branch information
brikis98 authored Sep 10, 2020
2 parents bc1bcc4 + 83d86a7 commit e21690f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions modules/nomad-cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ output "launch_config_name" {
value = aws_launch_configuration.launch_configuration.name
}

output "iam_instance_profile_arn" {
value = aws_iam_instance_profile.instance_profile.arn
}

output "iam_instance_profile_id" {
value = aws_iam_instance_profile.instance_profile.id
}

output "iam_instance_profile_name" {
value = aws_iam_instance_profile.instance_profile.name
}

output "iam_role_arn" {
value = aws_iam_role.instance_role.arn
}
Expand Down

0 comments on commit e21690f

Please sign in to comment.