You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.9 KiB
2.9 KiB
page_title | subcategory | description |
---|---|---|
decort_kvmvm Resource - terraform-provider-decort |
decort_kvmvm (Resource)
Schema
Required
- boot_disk_size (Number) This compute instance boot disk size in GB. Make sure it is large enough to accomodate selected OS image.
- cpu (Number) Number of CPUs to allocate to this compute instance.
- driver (String) Hardware architecture of this compute instance.
- image_id (Number) ID of the OS image to base this compute instance on.
- name (String) Name of this compute. Compute names are case sensitive and must be unique in the resource group.
- ram (Number) Amount of RAM in MB to allocate to this compute instance.
- rg_id (Number) ID of the resource group where this compute should be deployed.
Optional
- cloud_init (String) Optional cloud_init parameters. Applied when creating new compute instance only, ignored in all other cases.
- description (String) Optional text description of this compute instance.
- extra_disks (Set of Number) Optional list of IDs of extra disks to attach to this compute. You may specify several extra disks.
- id (String) The ID of this resource.
- network (Block Set, Max: 8) Optional network connection(s) for this compute. You may specify several network blocks, one for each connection. (see below for nested schema)
- started (Boolean) Is compute started.
- timeouts (Block, Optional) (see below for nested schema)
Read-Only
- account_id (Number) ID of the account this compute instance belongs to.
- account_name (String) Name of the account this compute instance belongs to.
- boot_disk_id (Number) This compute instance boot disk ID.
- os_users (List of Object) Guest OS users provisioned on this compute instance. (see below for nested schema)
- rg_name (String) Name of the resource group where this compute instance is located.
Nested Schema for network
Required:
- net_id (Number) ID of the network for this connection.
- net_type (String) Type of the network for this connection, either EXTNET or VINS.
Optional:
- ip_address (String) Optional IP address to assign to this connection. This IP should belong to the selected network and free for use.
Read-Only:
- mac (String) MAC address associated with this connection. MAC address is assigned automatically.
Nested Schema for timeouts
Optional:
- create (String)
- default (String)
- delete (String)
- read (String)
- update (String)
Nested Schema for os_users
Read-Only:
- guid (String)
- login (String)
- password (String)
- public_key (String)