page_title | subcategory | description |
---|---|---|
citrixadm_managed_device Resource - terraform-provider-citrixadm |
Configuration for Managed Device resource |
Configuration for Managed Device resource
data "citrixadm_mps_agent" "agent1" {
name = "10.0.1.91"
}
resource "citrixadm_ns_device_profile" "profile1" {
name = "tf_ns_profile"
username = "nsroot"
password = "verysecretpassword"
http_port = "80"
https_port = "443"
}
resource "citrixadm_managed_device" "device1" {
ip_address = "10.0.1.166"
profile_name = citrixadm_ns_device_profile.profile1.name
datacenter_id = data.citrixadm_mps_agent.agent1.datacenter_id
agent_id = data.citrixadm_mps_agent.agent1.id
entity_tag {
prop_key = "project"
prop_value = "demo"
}
entity_tag {
prop_key = "environment"
prop_value = "test"
}
}
agent_id
(String) Agent Iddatacenter_id
(String) Datacenter Id is system generated key for data centerip_address
(String) IP Address for this managed deviceprofile_name
(String) Device Profile Name that is attached with this managed device
entity_tag
(Block List) (see below for nested schema)
id
(String) The ID of this resource.
Optional:
prop_key
(String) Property keyprop_value
(String) Property value