0
0
llucycodes42
Thiscode defines a scaleway_server resource with the name "myResourceName".The scaleway_server resource has an image of "5faef9cd-ea9b-4a63-9171-9e26bec03dbc" and type of "VC1M".The scaleway_server resource has a volume with the size of 20GB and type of "l_ssd".
Shortcut: tf_scaleway_server
resource "scaleway_server" "${myResourceName}" {
name = "my-${myResourceName}"
image = "5faef9cd-ea9b-4a63-9171-9e26bec03dbc"
type = "VC1M"
volume {
size_in_gb = 20
type = "l_ssd"
}
}