-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoutputs.tf
11 lines (9 loc) · 923 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
output "Domain_Protect_permissions" {
value = "Use GCP IAM console to grant org level permissions to service account ${module.iam.service_account_email} see https://github.com/domain-protect/domain-protect-gcp#manually-apply-audit-permissions-at-org-level"
}
output "Pub_Sub_permissions" {
value = "Use GCP IAM console to grant project level permission to Google managed service account service-${data.google_project.project.number}@gcp-sa-pubsub.iam.gserviceaccount.com see https://github.com/domain-protect/domain-protect-gcp#ensure-correct-permissions-on-google-service-accounts"
}
output "GCF_robot_permissions" {
value = "Use GCP IAM console to grant project level permission to Google managed service account service-${data.google_project.project.number}@gcf-admin-robot.iam.gserviceaccount.com see https://github.com/domain-protect/domain-protect-gcp#ensure-correct-permissions-on-google-service-accounts"
}