alicloud_rdc_organizations
更新时间:
This data source provides the Rdc Organizations of the current Alibaba Cloud user.
-> NOTE: Available in v1.137.0+.
Example Usage
Basic Usage
variable "name" {
default = "tf-testAccOrganizations-Organizations"
}
resource "alicloud_rdc_organization" "default" {
organization_name = var.name
source = var.name
}
data "alicloud_rdc_organizations" "ids" {
ids = [alicloud_rdc_organization.default.id]
}
output "rdc_organization_id_1" {
value = data.alicloud_rdc_organizations.ids.id
}
data "alicloud_rdc_organizations" "nameRegex" {
name_regex = "^my-Organization"
}
output "rdc_organization_id_2" {
value = data.alicloud_rdc_organizations.nameRegex.id
}
Argument Reference
The following arguments are supported:
ids
- (Optional, ForceNew, Computed) A list of Organization IDs.name_regex
- (Optional, ForceNew) A regex string to filter results by Organization name.output_file
- (Optional) File name where to save data source results (after runningterraform plan
).real_pk
- (Optional, ForceNew) User pk, not required, only required when the ak used by the calling interface is inconsistent with the user pk
Argument Reference
The following attributes are exported in addition to the arguments listed above:
names
- A list of Organization names.organizations
- A list of Rdc Organizations. Each element contains the following attributes:id
- The ID of the Organization.organization_id
- The first ID of the resource.organization_name
- Company name.
文档内容是否对您有帮助?