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

fix: rename incorrect property in edge node example #133

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
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
Loading