Skip to content

Commit

Permalink
ENH: Provide a default for maintainer_service_account_names
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Mar 5, 2025
1 parent e1a9fd8 commit 052b1df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ module "octue_twined_cluster" {
source = "git::github.com/octue/terraform-octue-twined-cluster.git?ref=0.1.0"
google_cloud_project_id = var.google_cloud_project_id
google_cloud_region = var.google_cloud_region
maintainer_service_account_names = ["person1", "person2"]
environment = local.environment
cluster_queue = var.cluster_queue
}
Expand Down Expand Up @@ -211,7 +210,7 @@ terraform destroy
|--------------------------------------|---------------|----------|----------------------------------------------------------------------------------------|
| `google_cloud_project_id` | `string` | Yes | N/A |
| `google_cloud_region` | `string` | Yes | N/A |
| `maintainer_service_account_names` | `set(string)` | Yes | N/A |
| `maintainer_service_account_names` | `set(string)` | No | `set(["default"])` |
| `environment` | `string` | No | `"main"` |
| `maximum_event_handler_instances` | `number` | No | `100` |
| `maximum_service_registry_instances` | `number` | No | `10` |
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ variable "google_cloud_region" {

variable "maintainer_service_account_names" {
type = set(string)
default = set(["default"])
description = "The names of the maintainer IAM service accounts (without the 'maintainer-' prefix)."
}

Expand Down

0 comments on commit 052b1df

Please # to comment.