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

docs: update Getting Started Terraform Tutorial files #42

Merged
merged 15 commits into from
Sep 24, 2024
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
Prev Previous commit
Next Next commit
docs: fix azure azs issue
caroldelwing committed Jun 18, 2024
commit 4541271a8ad7c4b95d4571dd8ec43a7b1fc052d7
4 changes: 2 additions & 2 deletions terraform/getting-started-deployment-tf/clusters.tf
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@ resource "spectrocloud_cluster_azure" "azure-cluster" {
name = "control-plane-pool"
count = var.azure_control_plane_nodes.count
instance_type = var.azure_control_plane_nodes.instance_type
azs = var.azure_control_plane_nodes.azs
azs = var.azure-use-azs ? var.azure_control_plane_nodes.azs : [""]
is_system_node_pool = var.azure_control_plane_nodes.is_system_node_pool
disk {
size_gb = var.azure_control_plane_nodes.disk_size_gb
@@ -82,7 +82,7 @@ resource "spectrocloud_cluster_azure" "azure-cluster" {
name = "worker-basic"
count = var.azure_worker_nodes.count
instance_type = var.azure_worker_nodes.instance_type
azs = var.azure_worker_nodes.azs
azs = var.azure-use-azs ? var.azure_worker_nodes.azs : [""]
is_system_node_pool = var.azure_worker_nodes.is_system_node_pool
}