constellation/terraform/infrastructure/iam/gcp/outputs.tf
Leonard Cohnen 66815a4a47
gcp: support projects with no default permissions (#3656)
* helm/gcp: use service account in operator and joinservice

* helm: format operator testdata

* terraform/iam: create additional service account for VMs

This service account is used in the following commits and is attached to the VMs

* config: pass VM service account from iam create to cluster create via config

* cli/iamcreate: limit name prefix length

* docs: add minimal gcp IAM permissions
2025-03-25 14:13:38 +01:00

11 lines
371 B
HCL

output "service_account_key" {
value = google_service_account_key.service_account_key.private_key
description = "Private key of the service account."
sensitive = true
}
output "service_account_mail_vm" {
value = google_service_account.vm.email
description = "Mail address of the service account to be attached to the VMs"
sensitive = false
}