terraform-provider-stackitp.../docs/resources/server_volume_attach.md
Ruben Hönle 53a3697850
feat(iaas): support for v2 API (#1070)
relates to STACKITTPR-313
2025-12-17 15:40:46 +01:00

1.4 KiB

page_title subcategory description
stackit_server_volume_attach Resource - stackit Volume attachment resource schema. Attaches a volume to a server. Must have a region specified in the provider configuration.

stackit_server_volume_attach (Resource)

Volume attachment resource schema. Attaches a volume to a server. Must have a region specified in the provider configuration.

Example Usage

resource "stackit_server_volume_attach" "attached_volume" {
  project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  server_id  = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  volume_id  = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}

# Only use the import statement, if you want to import an existing server volume attachment
import {
  to = stackit_server_volume_attach.import-example
  id = "${var.project_id},${var.region},${var.server_id},${var.volume_id}"
}

Schema

Required

  • project_id (String) STACKIT project ID to which the volume attachment is associated.
  • server_id (String) The server ID.
  • volume_id (String) The volume ID.

Optional

  • region (String) The resource region. If not defined, the provider region is used.

Read-Only

  • id (String) Terraform's internal resource ID. It is structured as "project_id,region,server_id,volume_id".