-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
24 lines (20 loc) · 1.09 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
output "certificates_bucket" {
description = "The S3 bucket where certboto-docker certificates will be stored."
value = aws_s3_bucket.certificates
}
output "certificatesbucketfullaccess_role" {
description = "The IAM role that allows full access to the certboto-docker certificates bucket in the DNS account."
value = aws_iam_role.certificatesbucketfullaccess_role
}
output "certificatesbucketreadonly_role" {
description = "The IAM role that allows read-only access to the certboto-docker certificates bucket in the DNS account."
value = aws_iam_role.certificatesbucketreadonly_role
}
output "provisioncertificatereadroles_role" {
description = "The IAM role with the ability to provision IAM roles that can read selected certificates in the certificates bucket in the DNS account."
value = aws_iam_role.provisioncertificatereadroles_role
}
output "provisioncertificatesbucket_policy" {
description = "The IAM policy that allows provisioning of the certboto-docker certificates bucket in the DNS account."
value = aws_iam_policy.provisioncertificatesbucket_policy
}