Skip to content

Commit

Permalink
Merge pull request #22 from CiscoDevNet/update-cloudinit
Browse files Browse the repository at this point in the history
Changed cloudinit types from cli/xml to v1/v2
  • Loading branch information
jasonking3 authored Feb 10, 2022
2 parents 7ce5d7c + d1ea1b4 commit 0d6d23a
Show file tree
Hide file tree
Showing 17 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions vmware/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ variable "cedge_device_list" {

variable "cloudinit_type" {
type = string
default = "cli"
default = "v1"
validation {
condition = var.cloudinit_type == "cli" || var.cloudinit_type == "xml"
error_message = "The cloudinit_type must be either \"cli\" or \"xml\"."
condition = var.cloudinit_type == "v1" || var.cloudinit_type == "v2"
error_message = "The cloudinit_type must be either \"v1\" or \"v2\"."
}
}

0 comments on commit 0d6d23a

Please sign in to comment.