page_title | subcategory | description |
---|---|---|
morpheus_resource_pool_group Resource - terraform-provider-morpheus |
Provides a Morpheus resource pool group resource |
Provides a Morpheus resource pool group resource
resource "morpheus_resource_pool_group" "tfexample_resource_pool_group" {
name = "TFExample Resource Pool Group"
description = "TFExample Resource Pool Group"
mode = "roundRobin"
resource_pool_ids = [1, 2, 3]
all_group_access = true
group_access {
group_id = 2
default = true
}
visibility = "public"
tenant_ids = [1, 2]
}
mode
(String) The load balancing mode of the resource pool group (roundrobin, availablecapacity)name
(String) The name of the resource pool groupresource_pool_ids
(Set of Number) A list of resource pool ids associated with the resource pool group
all_group_access
(Boolean) Whether all groups will be granted access to the resource pool groupdescription
(String) The description of the resource pool groupgroup_access
(Block List) A list of Morpheus group configuration to enable group access to the resource pool group (see below for nested schema)tenant_ids
(Set of Number) A list of tenant ids associated with the resource pool groupvisibility
(String) Whether the resource pool group is visible in sub-tenants or not
id
(String) The ID of the resource pool group
Required:
default
(Boolean) Whether the resource pool group will be a default for the associated groupgroup_id
(Number) The ID of the Morpheus group to grant access to the resource pool group
Import is supported using the following syntax:
terraform import morpheus_resource_pool_group.tf_example_resource_pool_group 1