mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-25 00:05:17 -04:00

* 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
11 lines
371 B
HCL
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
|
|
}
|