Skip to content

Commit

Permalink
Fix "Invalid cloud-config schema: user-data" (#20)
Browse files Browse the repository at this point in the history
Error: Cloud config schema errors: mounts.0.1: None is not of type 'string'

Signed-off-by: Christian Berendt <berendt@osism.tech>
  • Loading branch information
berendt committed Dec 30, 2023
1 parent b36b37a commit 6366405
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testbed-default/customisations/default_custom.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "openstack_compute_instance_v2" "node_server" {
network:
config: disabled
mounts:
- [ ephemeral0, null ]
- [ ephemeral0 ]
ntp:
enabled: true
ntp_client: chrony
Expand Down
2 changes: 1 addition & 1 deletion testbed-managerless/customisations/default_custom.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "openstack_compute_instance_v2" "node_server" {
network:
config: disabled
mounts:
- [ ephemeral0, null ]
- [ ephemeral0 ]
ntp:
enabled: true
ntp_client: chrony
Expand Down

0 comments on commit 6366405

Please sign in to comment.