mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-09 12:02:55 -04:00
This is definitely scaleway_server instead of scaleway_volume, wouldn't make any sense otherwise.
1.0 KiB
1.0 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| scaleway | Scaleway: volume | docs-scaleway-resource-volume | Manages Scaleway Volumes. |
scaleway_volume
Provides ARM volumes. This allows volumes to be created, updated and deleted. For additional details please refer to API documentation.
Example Usage
resource "scaleway_server" "test" {
name = "test"
image = "aecaed73-51a5-4439-a127-6d8229847145"
type = "C2S"
volumes = ["${scaleway_volume.test.id}"]
}
resource "scaleway_volume" "test" {
name = "test"
size_in_gb = 20
type = "l_ssd"
}
Argument Reference
The following arguments are supported:
name- (Required) name of volumesize_in_gb- (Required) size of the volume in GBtype- (Required) type of volume
Attributes Reference
The following attributes are exported:
id- id of the new resource
Import
Instances can be imported using the id, e.g.
$ terraform import scaleway_volume.test 5faef9cd-ea9b-4a63-9171-9e26bec03dbc