From abc1f4b0faadba4c38e2bb18579252e7ee8486f9 Mon Sep 17 00:00:00 2001 From: Ovidiu Valeanu Date: Thu, 26 Oct 2023 17:50:06 +0100 Subject: [PATCH] chore: Update the aws region --- ai-ml/ray/terraform/main.tf | 6 +++--- schedulers/terraform/argo-workflow/README.md | 2 +- schedulers/terraform/argo-workflow/variables.tf | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ai-ml/ray/terraform/main.tf b/ai-ml/ray/terraform/main.tf index 80e286b09..d6e9f5b49 100644 --- a/ai-ml/ray/terraform/main.tf +++ b/ai-ml/ray/terraform/main.tf @@ -193,9 +193,9 @@ module "karpenter" { source = "terraform-aws-modules/eks/aws//modules/karpenter" version = "~> 19.15" - cluster_name = module.eks.cluster_name - irsa_oidc_provider_arn = module.eks.oidc_provider_arn - create_irsa = false # IRSA will be created by the kubernetes-addons module + cluster_name = module.eks.cluster_name + irsa_oidc_provider_arn = module.eks.oidc_provider_arn + create_irsa = false # IRSA will be created by the kubernetes-addons module iam_role_additional_policies = { additional_policy = module.karpenter_policy.arn } diff --git a/schedulers/terraform/argo-workflow/README.md b/schedulers/terraform/argo-workflow/README.md index 24697755c..380022617 100644 --- a/schedulers/terraform/argo-workflow/README.md +++ b/schedulers/terraform/argo-workflow/README.md @@ -89,7 +89,7 @@ Checkout the [documentation website](https://awslabs.github.io/data-on-eks/docs/ | [name](#input\_name) | Name of the VPC and EKS Cluster | `string` | `"doeks-spark-argo"` | no | | [private\_subnets](#input\_private\_subnets) | Private Subnets CIDRs. 254 IPs per Subnet/AZ for Private NAT + NLB + Airflow + EC2 Jumphost etc. | `list(string)` |
[
"10.1.1.0/24",
"10.1.2.0/24"
]
| no | | [public\_subnets](#input\_public\_subnets) | Public Subnets CIDRs. 62 IPs per Subnet/AZ | `list(string)` |
[
"10.1.0.0/26",
"10.1.0.64/26"
]
| no | -| [region](#input\_region) | Region | `string` | `"eu-west-2"` | no | +| [region](#input\_region) | Region | `string` | `"us-west-2"` | no | | [secondary\_cidr\_blocks](#input\_secondary\_cidr\_blocks) | Secondary CIDR blocks to be attached to VPC | `list(string)` |
[
"100.64.0.0/16"
]
| no | | [vpc\_cidr](#input\_vpc\_cidr) | VPC CIDR. This should be a valid private (RFC 1918) CIDR range | `string` | `"10.1.0.0/16"` | no | diff --git a/schedulers/terraform/argo-workflow/variables.tf b/schedulers/terraform/argo-workflow/variables.tf index 40d44fd90..6b8b6d30d 100644 --- a/schedulers/terraform/argo-workflow/variables.tf +++ b/schedulers/terraform/argo-workflow/variables.tf @@ -7,7 +7,7 @@ variable "name" { variable "region" { description = "Region" type = string - default = "eu-west-2" + default = "us-west-2" } variable "eks_cluster_version" {