Skip to content

Commit

Permalink
fixup! remove region var
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Nov 3, 2023
1 parent b74f6f7 commit 1666334
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/e2e-test-tf-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,7 @@ on:
description: "Which cloud provider to use."
type: string
default: "aws"
region:
description: "Which region to use."
type: string
default: "us-east-2"
zone:
regionZone:
description: "Which zone to use."
type: string
default: "us-east-2c"
Expand Down Expand Up @@ -95,20 +91,20 @@ jobs:
cat > terraform.tfvars <<EOF
name = "${{ steps.create-prefix.outputs.prefix }}"
image = "${{ inputs.image }}"
zone = "${{ inputs.zone }}"
zone = "${{ inputs.regionZone }}"
name_prefix = "${{ steps.create-prefix.outputs.prefix }}"
node_groups = {
control_plane_default = {
role = "control-plane"
zone = "${{ inputs.zone }}"
zone = "${{ inputs.regionZone }}"
instance_type = "m6a.xlarge"
disk_size = 30
disk_type = "gp3"
initial_count = 2
},
worker_default = {
role = "worker"
zone = "${{ inputs.zone }}"
zone = "${{ inputs.regionZone }}"
instance_type = "m6a.xlarge"
disk_size = 30
disk_type = "gp3"
Expand Down

0 comments on commit 1666334

Please sign in to comment.