-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
Description
Problem description
Due to compliance requirements, we need volume encryption.
Proposed solution
Add the encryption parameter to a new resources called volume v2
resource "stackit_volume_v2" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
.... (like the normal volume)
encryption_parameters = {
key_id = "d61a8564-c8dd-4ffb-bc15-143e7d0c85ed"
key_version = 1
keyring_id = "d61a8564-c8dd-4ffb-bc15-143e7d0c85ed",
key_payload = "(optional)"
project_id = "(optional)"
service_account = "[email protected]"
}
}
Additional information
Alternatively, you could update the existing stackit_volume. That would also work for us.