3.1 KiB
3.1 KiB
| page_title | subcategory | description |
|---|---|---|
| stackitprivatepreview_sqlserverflexalpha_instance Resource - stackitprivatepreview |
stackitprivatepreview_sqlserverflexalpha_instance (Resource)
Example Usage
resource "stackitprivatepreview_sqlserverflexalpha_instance" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
name = "example-instance"
acl = ["XXX.XXX.XXX.X/XX", "XX.XXX.XX.X/XX"]
backup_schedule = "00 00 * * *"
flavor = {
cpu = 4
ram = 16
}
storage = {
class = "class"
size = 5
}
version = 2022
}
# Only use the import statement, if you want to import an existing sqlserverflex instance
import {
to = stackitprivatepreview_sqlserverflexalpha_instance.import-example
id = "${var.project_id},${var.region},${var.sql_instance_id}"
}
Schema
Required
backup_schedule(String) The schedule for on what time and how often the database backup will be created. The schedule is written as a cron schedule.flavor_id(String) The id of the instance flavor.name(String) The name of the instance.network(Attributes) the network configuration of the instance. (see below for nested schema)retention_days(Number) The days for how long the backup files should be stored before cleaned up. 30 to 365storage(Attributes) The object containing information about the storage size and class. (see below for nested schema)version(String) The sqlserver version used for the instance.
Optional
encryption(Attributes) this defines which key to use for storage encryption (see below for nested schema)instance_id(String) The ID of the instance.project_id(String) The STACKIT project ID.region(String) The region which should be addressed
Read-Only
edition(String) Edition of the MSSQL server instanceid(String) The ID of the instance.is_deletable(Boolean) Whether the instance can be deleted or not.replicas(Number) How many replicas the instance should have.status(String)
Nested Schema for network
Required:
acl(List of String) List of IPV4 cidr.
Optional:
access_scope(String) The network access scope of the instance
⚠️ Note: This feature is in private preview. Supplying this object is only permitted for enabled accounts. If your account does not have access, the request will be rejected.
Read-Only:
instance_address(String)router_address(String)
Nested Schema for storage
Required:
class(String) The storage class for the storage.size(Number) The storage size in Gigabytes.
Nested Schema for encryption
Required:
kek_key_id(String) The key identifierkek_key_ring_id(String) The keyring identifierkek_key_version(String) The key versionservice_account(String)