File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ output "iam_role_name" {
66
66
67
67
output "iam_role_arn" {
68
68
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 )
70
70
}
71
71
72
72
output "iam_role_unique_id" {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ output "iam_role_name" {
9
9
10
10
output "iam_role_arn" {
11
11
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 )
13
13
}
14
14
15
15
output "iam_role_unique_id" {
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ output "iam_role_unique_id" {
124
124
125
125
output "iam_instance_profile_arn" {
126
126
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 )
128
128
}
129
129
130
130
output "iam_instance_profile_id" {
You can’t perform that action at this time.
0 commit comments