generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CC-2017: Added [count.index]/[each.key] where necessary.
- Loading branch information
Showing
3 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
22 changes: 11 additions & 11 deletions
22
terraform/environments/ccms-ebs/ccms-certificates-outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,60 @@ | ||
output "aws_acm_certificate-external-arn" { | ||
description = "aws_acm_certificate external arn" | ||
value = aws_acm_certificate.external.arn | ||
value = aws_acm_certificate.external[count.index].arn | ||
} | ||
|
||
output "aws_acm_certificate-external-domain_name" { | ||
description = "aws_acm_certificate external domain_name" | ||
value = aws_acm_certificate.external.domain_name | ||
value = aws_acm_certificate.external[count.index].domain_name | ||
} | ||
|
||
output "aws_acm_certificate-external-not_after" { | ||
description = "aws_acm_certificate external not_after" | ||
value = aws_acm_certificate.external.not_after | ||
value = aws_acm_certificate.external[count.index].not_after | ||
} | ||
|
||
output "aws_acm_certificate-external-status" { | ||
description = "aws_acm_certificate external status" | ||
value = aws_acm_certificate.external.status | ||
value = aws_acm_certificate.external[count.index].status | ||
} | ||
|
||
# | ||
|
||
output "aws_acm_certificate-external-service-arn" { | ||
description = "aws_acm_certificate external-service arn" | ||
value = aws_acm_certificate.external-service.arn | ||
value = aws_acm_certificate.external-service[count.index].arn | ||
} | ||
|
||
output "aws_acm_certificate-external-service-domain_name" { | ||
description = "aws_acm_certificate external-service domain_name" | ||
value = aws_acm_certificate.external-service.domain_name | ||
value = aws_acm_certificate.external-service[count.index].domain_name | ||
} | ||
|
||
output "aws_acm_certificate-external-service-not_after" { | ||
description = "aws_acm_certificate external-service not_after" | ||
value = aws_acm_certificate.external-service.not_after | ||
value = aws_acm_certificate.external-service[count.index].not_after | ||
} | ||
|
||
output "aws_acm_certificate-external-service-status" { | ||
description = "aws_acm_certificate external-service status" | ||
value = aws_acm_certificate.external-service.status | ||
value = aws_acm_certificate.external-service[count.index].status | ||
} | ||
|
||
# | ||
|
||
output "aws_route53_record-external_validation-fqdn" { | ||
description = "aws_route53_record external_validation fqdn" | ||
value = aws_route53_record.external_validation.fqdn | ||
value = aws_route53_record.external_validation[count.index].fqdn | ||
} | ||
|
||
output "aws_route53_record-external_validation-name" { | ||
description = "aws_route53_record external_validation name" | ||
value = aws_route53_record.external_validation.name | ||
value = aws_route53_record.external_validation[count.index].name | ||
} | ||
|
||
# | ||
|
||
output "aws_acm_certificate_validation-external-id" { | ||
description = "aws_acm_certificate_validation external id" | ||
value = aws_acm_certificate_validation.external.id | ||
value = aws_acm_certificate_validation.external[count.index].id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
output "aws_iam_role_dlm_lifecycle_role_arn" { | ||
description = "aws_iam_role dlm_lifecycle_role arn" | ||
value = aws_iam_role.dlm_lifecycle_role.arn | ||
value = aws_iam_role.dlm_lifecycle_role[count.index].arn | ||
} | ||
|
||
output "aws_iam_role_dlm_lifecycle_role_name" { | ||
description = "aws_iam_role dlm_lifecycle_role name" | ||
value = aws_iam_role.dlm_lifecycle_role.name | ||
value = aws_iam_role.dlm_lifecycle_role[count.index].name | ||
} | ||
|
||
# | ||
|
||
output "aws_iam_role_policy_dlm_lifecycle_id" { | ||
description = "aws_iam_role_policy dlm_lifecycle id" | ||
value = aws_iam_role_policy.dlm_lifecycle.id | ||
value = aws_iam_role_policy.dlm_lifecycle[count.index].id | ||
} | ||
|
||
output "aws_iam_role_policy_dlm_lifecycle_name" { | ||
description = "aws_iam_role_policy dlm_lifecycle name" | ||
value = aws_iam_role_policy.dlm_lifecycle.name | ||
value = aws_iam_role_policy.dlm_lifecycle[count.index].name | ||
} | ||
|
||
output "aws_iam_role_policy_dlm_lifecycle_policy" { | ||
description = "aws_iam_role_policy dlm_lifecycle policy" | ||
value = aws_iam_role_policy.dlm_lifecycle.policy | ||
value = aws_iam_role_policy.dlm_lifecycle[count.index].policy | ||
} | ||
|
||
output "aws_iam_role_policy_dlm_lifecycle_role" { | ||
description = "aws_iam_role_policy dlm_lifecycle role" | ||
value = aws_iam_role_policy.dlm_lifecycle.role | ||
value = aws_iam_role_policy.dlm_lifecycle[count.index].role | ||
} | ||
|
||
# | ||
|
||
output "aws_dlm_lifecycle_policy_lifecyclerole_arn" { | ||
description = "aws_dlm_lifecycle_policy lifecyclerole arn" | ||
value = aws_dlm_lifecycle_policy.lifecyclerole.arn | ||
value = aws_dlm_lifecycle_policy.lifecyclerole[count.index].arn | ||
} |