File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ output "iam_role_name" {
6666
6767output "iam_role_arn" {
6868 description = " The Amazon Resource Name (ARN) specifying the IAM role"
69- value = try (aws_iam_role. this [0 ]. arn , " " )
69+ value = try (aws_iam_role. this [0 ]. arn , var . iam_role_arn )
7070}
7171
7272output "iam_role_unique_id" {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ output "iam_role_name" {
99
1010output "iam_role_arn" {
1111 description = " The Amazon Resource Name (ARN) specifying the IAM role"
12- value = try (aws_iam_role. this [0 ]. arn , " " )
12+ value = try (aws_iam_role. this [0 ]. arn , var . iam_role_arn )
1313}
1414
1515output "iam_role_unique_id" {
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ output "iam_role_unique_id" {
124124
125125output "iam_instance_profile_arn" {
126126 description = " ARN assigned by AWS to the instance profile"
127- value = try (aws_iam_instance_profile. this [0 ]. arn , " " )
127+ value = try (aws_iam_instance_profile. this [0 ]. arn , var . iam_instance_profile_arn )
128128}
129129
130130output "iam_instance_profile_id" {
You can’t perform that action at this time.
0 commit comments