» alicloud_cr_namespaces
This data source provides a list Container Registry namespaces on Alibaba Cloud.
NOTE: Available in v1.35.0+
» Example Usage
# Declare the data source
data "alicloud_cr_namespaces" "my_namespaces" {
name_regex = "my-namespace"
output_file = "my-namespace-json"
}
output "output" {
value = "${data.alicloud_cr_namespaces.my_namespaces.namespaces}"
}
» Argument Reference
The following arguments are supported:
-
name_regex
- (Optional) A regex string to filter results by namespace name. -
output_file
- (Optional) File name where to save data source results (after runningterraform plan
).
» Attributes Reference
The following attributes are exported in addition to the arguments listed above:
-
ids
- A list of matched Container Registry namespaces. Its element is a namespace name. -
namespaces
- A list of matched Container Registry namespaces. Each element contains the following attributes:-
name
- Name of Container Registry namespace. -
auto_create
- Boolean, when it set to true, repositories are automatically created when pushing new images. If it set to false, you create repository for images before pushing. -
default_visibility
-PUBLIC
orPRIVATE
, default repository visibility in this namespace.
-