Skip to content

Commit 809072e

Browse files
authored
doc(instance): fix typo on user-data (#770)
1 parent ef62c5c commit 809072e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/guides/migration_guide_v2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ resource "scaleway_instance_server" "web" {
205205
type = "DEV1-S"
206206
image = "ubuntu_focal"
207207
208-
user_data {
208+
user_data = {
209209
foo = "bar"
210210
cloud-init = file("cloud-init.yml")
211211
}

docs/resources/instance_server.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ resource "scaleway_instance_server" "web" {
103103
type = "DEV1-S"
104104
image = "ubuntu_focal"
105105
106-
user_data {
106+
user_data = {
107107
foo = "bar"
108108
cloud-init = file("${path.module}/cloud-init.yml")
109109
}

0 commit comments

Comments
 (0)