Provides a ECD Command resource.
For information about ECD Command and how to use it, see What is Command.
Basic Usage
variable "name" {
default = "terraform-example"
}
resource "random_integer" "default" {
min = 10000
max = 99999
}
resource "alicloud_ecd_simple_office_site" "default" {
cidr_block = "172.16.0.0/12"
enable_admin_access = true
desktop_access_type = "Internet"
office_site_name = "${var.name}-${random_integer.default.result}"
}
resource "alicloud_ecd_policy_group" "default" {
policy_group_name = var.name
clipboard = "read"
local_drive = "read"
usb_redirect = "off"
watermark = "off"
authorize_access_policy_rules {
description = var.name
cidr_ip = "1.2.3.45/24"
}
authorize_security_policy_rules {
type = "inflow"
policy = "accept"
description = var.name
port_range = "80/80"
ip_protocol = "TCP"
priority = "1"
cidr_ip = "1.2.3.4/24"
}
}
data "alicloud_ecd_bundles" "default" {
bundle_type = "SYSTEM"
}
resource "alicloud_ecd_desktop" "default" {
office_site_id = alicloud_ecd_simple_office_site.default.id
policy_group_id = alicloud_ecd_policy_group.default.id
bundle_id = data.alicloud_ecd_bundles.default.bundles.0.id
desktop_name = var.name
}
resource "alicloud_ecd_command" "default" {
command_content = "ipconfig"
command_type = "RunPowerShellScript"
desktop_id = alicloud_ecd_desktop.default.id
}
The following arguments are supported:
command_content
- (Required, ForceNew) The Contents of the Script to Base64 Encoded Transmission.command_type
- (Required, ForceNew) The Script Type. Valid values: RunBatScript
, RunPowerShellScript
.content_encoding
- (Optional, Computed) That Returns the Data Encoding Method. Valid values: Base64
, PlainText
.desktop_id
- (Required, ForceNew) The desktop id of the Desktop.timeout
- (Optional) The timeout period for script execution the unit is seconds. Default to: 60
.The following attributes are exported:
id
- The resource ID in terraform of Command.status
- Script Is Executed in the Overall Implementation of the State. Valid values: Pending
, Failed
, PartialFailed
, Running
, Stopped
, Stopping
, Finished
, Success
.ECD Command can be imported using the id, e.g.
$ terraform import alicloud_ecd_command.example <id>