Skip to content

Commit

Permalink
fix: rename incorrect property in edge node example (#133)
Browse files Browse the repository at this point in the history
Signed-off-by: Stoyan Zhelyazkov <[email protected]>
  • Loading branch information
spacegospod authored Mar 5, 2024
1 parent 776687d commit 3d3efab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/resources/edge_cluster/variables.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ariable "sddc_manager_username" {
variable "sddc_manager_username" {
description = "Username used to authenticate against an SDDC Manager instance."
default = ""
}
Expand Down
4 changes: 2 additions & 2 deletions examples/resources/edge_cluster/vcf_edge_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "vcf_edge_cluster" "cluster_1" {

edge_node {
name = var.edge_node_1_name
cluster_id = var.compute_cluster_id
compute_cluster_id = var.compute_cluster_id
root_password = var.edge_node_1_root_pass
admin_password = var.edge_node_1_admin_pass
audit_password = var.edge_node_1_audit_pass
Expand Down Expand Up @@ -63,7 +63,7 @@ resource "vcf_edge_cluster" "cluster_1" {

edge_node {
name = var.edge_node_2_name
cluster_id = var.compute_cluster_id
compute_cluster_id = var.compute_cluster_id
root_password = var.edge_node_2_root_pass
admin_password = var.edge_node_2_admin_pass
audit_password = var.edge_node_2_audit_pass
Expand Down

0 comments on commit 3d3efab

Please sign in to comment.