# Google Service Account Module This module allows simplified creation and management of one a service account and its IAM bindings. A key can optionally be generated and will be stored in Terraform state. To use it create a sensitive output in your root modules referencing the `key` output, then extract the private key from the JSON formatted outputs. Alternatively, the `key` can be generated with `openssl` library and only public part uploaded to the Service Account, for more refer to the [Onprem SA Key Management](../../blueprints/cloud-operations/onprem-sa-key-management/) example. Note that this module does not fully comply with our design principles, as outputs have no dependencies on IAM bindings to prevent resource cycles. ## Example ```hcl module "myproject-default-service-accounts" { source = "./fabric/modules/iam-service-account" project_id = "myproject" name = "vm-default" generate_key = true # authoritative roles granted *on* the service accounts to other identities iam = { "roles/iam.serviceAccountUser" = ["user:foo@example.com"] } # non-authoritative roles granted *to* the service accounts on other resources iam_project_roles = { "myproject" = [ "roles/logging.logWriter", "roles/monitoring.metricWriter", ] } } # tftest modules=1 resources=5 ``` ## Files | name | description | resources | |---|---|---| | [iam.tf](./iam.tf) | IAM bindings. | google_billing_account_iam_member · google_folder_iam_member · google_organization_iam_member · google_project_iam_member · google_service_account_iam_binding · google_service_account_iam_member · google_storage_bucket_iam_member | | [main.tf](./main.tf) | Module-level locals and resources. | google_service_account · google_service_account_key | | [outputs.tf](./outputs.tf) | Module outputs. | | | [variables.tf](./variables.tf) | Module variables. | | | [versions.tf](./versions.tf) | Version pins. | | ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| | [name](variables.tf#L91) | Name of the service account to create. | string | ✓ | | | [project_id](variables.tf#L106) | Project id where service account will be created. | string | ✓ | | | [description](variables.tf#L17) | Optional description. | string | | null | | [display_name](variables.tf#L23) | Display name of the service account to create. | string | | "Terraform-managed." | | [generate_key](variables.tf#L29) | Generate a key for service account. | bool | | false | | [iam](variables.tf#L35) | IAM bindings on the service account in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} | | [iam_additive](variables.tf#L42) | IAM additive bindings on the service account in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} | | [iam_billing_roles](variables.tf#L49) | Billing account roles granted to this service account, by billing account id. Non-authoritative. | map(list(string)) | | {} | | [iam_folder_roles](variables.tf#L56) | Folder roles granted to this service account, by folder id. Non-authoritative. | map(list(string)) | | {} | | [iam_organization_roles](variables.tf#L63) | Organization roles granted to this service account, by organization id. Non-authoritative. | map(list(string)) | | {} | | [iam_project_roles](variables.tf#L70) | Project roles granted to this service account, by project id. | map(list(string)) | | {} | | [iam_sa_roles](variables.tf#L77) | Service account roles granted to this service account, by service account name. | map(list(string)) | | {} | | [iam_storage_roles](variables.tf#L84) | Storage roles granted to this service account, by bucket name. | map(list(string)) | | {} | | [prefix](variables.tf#L96) | Prefix applied to service account names. | string | | null | | [public_keys_directory](variables.tf#L111) | Path to public keys data files to upload to the service account (should have `.pem` extension). | string | | "" | | [service_account_create](variables.tf#L117) | Create service account. When set to false, uses a data source to reference an existing service account. | bool | | true | ## Outputs | name | description | sensitive | |---|---|:---:| | [email](outputs.tf#L17) | Service account email. | | | [iam_email](outputs.tf#L25) | IAM-format service account email. | | | [id](outputs.tf#L33) | Service account id. | | | [key](outputs.tf#L42) | Service account key. | ✓ | | [name](outputs.tf#L48) | Service account name. | | | [service_account](outputs.tf#L57) | Service account resource. | | | [service_account_credentials](outputs.tf#L62) | Service account json credential templates for uploaded public keys data. | |