Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update legacy facilities and servers #70

Merged
merged 2 commits into from
Apr 22, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "auth_token" {
variable "facility" {
type = string
description = "Equinix Metal Facility"
default = "ewr1"
default = "dc13"
}

variable "project_id" {
Expand All @@ -17,13 +17,13 @@ variable "project_id" {
variable "plan_arm" {
type = string
description = "Plan for K8s ARM Nodes"
default = "baremetal_2a"
default = "c1.large.arm"
}

variable "plan_x86" {
type = string
description = "Plan for K8s x86 Nodes"
default = "c1.small.x86"
default = "c3.small.x86"
}

variable "plan_gpu" {
Expand All @@ -35,7 +35,7 @@ variable "plan_gpu" {
variable "plan_primary" {
type = string
description = "K8s Primary Plan (Defaults to x86 - baremetal_0)"
scottilee marked this conversation as resolved.
Show resolved Hide resolved
default = "c1.small.x86"
default = "c3.small.x86"
}

variable "cluster_name" {
Expand Down