-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cluster-services-integration workspace
- Loading branch information
1 parent
21c256a
commit a3e87af
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
terraform/deployments/tfc-configuration/cluster-services.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module "cluster-services-integration" { | ||
source = "alexbasista/workspacer/tfe" | ||
version = "0.9.0" | ||
|
||
organization = var.organization | ||
workspace_name = "cluster-services-integration" | ||
workspace_desc = "The cluster-services module is responsible for the AWS resources which constitute the EKS cluster." | ||
workspace_tags = ["integration", "cluster-services", "eks", "aws"] | ||
terraform_version = "1.5.2" | ||
execution_mode = "remote" | ||
working_directory = "/terraform/deployments/cluster-services/" | ||
trigger_patterns = ["/terraform/deployments/cluster-services/**/*"] | ||
|
||
project_name = "govuk-infrastructure" | ||
vcs_repo = { | ||
identifier = "alphagov/govuk-infrastructure" | ||
branch = "main" | ||
oauth_token_id = data.tfe_oauth_client.github.oauth_token_id | ||
} | ||
|
||
team_access = { | ||
"GOV.UK Non-Production" = "write", | ||
"GOV.UK Production" = "write" | ||
} | ||
|
||
tfvars = { | ||
cluster_infrastructure_state_bucket = "govuk-terraform-integration" | ||
govuk_environment = "integration" | ||
github_read_write_team = "alphagov:gov-uk" | ||
argo_redis_ha = false | ||
desired_ha_replicas = 1 | ||
} | ||
|
||
# Variable Sets must already exist | ||
variable_set_names = [ | ||
"aws-credentials-integration" | ||
] | ||
|
||
} |