Skip to content

Commit 3bc5b88

Browse files
authored
feat: add project_sa_description to the top level module
1 parent 523faa9 commit 3bc5b88

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ module "project-factory" {
4545
folder_id = var.folder_id
4646
create_project_sa = var.create_project_sa
4747
project_sa_name = var.project_sa_name
48+
project_sa_description = var.project_sa_description
4849
sa_role = var.sa_role
4950
activate_apis = var.activate_apis
5051
activate_api_identities = var.activate_api_identities

variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ variable "project_sa_name" {
9696
default = "project-service-account"
9797
}
9898

99+
variable "project_sa_description" {
100+
description = "Description to set for the project default service account."
101+
type = string
102+
default = null
103+
}
104+
99105
variable "sa_role" {
100106
description = "A role to give the default Service Account for the project (defaults to none)"
101107
type = string

0 commit comments

Comments
 (0)