alicloud_cr_chains
更新时间:
This data source provides the Cr Chains of the current Alibaba Cloud user.
For information about CR Chains and how to use it, see What is Chain.
-> NOTE: Available in v1.161.0+.
Example Usage
Basic Usage
data "alicloud_cr_chains" "ids" {
instance_id = "example_value"
ids = ["example_value-1", "example_value-2"]
}
output "cr_chain_id_1" {
value = data.alicloud_cr_chains.ids.chains.0.id
}
data "alicloud_cr_chains" "nameRegex" {
instance_id = "example_value"
name_regex = "^my-Chain"
}
output "cr_chain_id_2" {
value = data.alicloud_cr_chains.nameRegex.chains.0.id
}
Argument Reference
The following arguments are supported:
instance_id- (Required, ForceNew) The ID of CR Enterprise Edition instance.name_regex- (Optional, ForceNew) A regex string to filter results by Chain name.repo_name- (Optional, ForceNew) The name of CR Enterprise Edition repository.repo_namespace_name- (Optional, ForceNew) The name of CR Enterprise Edition namespace.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 Chain IDs.names- A list of Chain names.chains- A list of Cr Chains. Each element contains the following attributes:id- The resource ID of the delivery chain. The value formats as<instance_id>:<chain_id>.chain_id- The ID of delivery chain.instance_id- The ID of CR Enterprise Edition instance.chain_name- The name of delivery chain.description- The description of delivery chain.chain_config- The configuration of delivery chain.routers- Execution sequence relationship between delivery chain nodes.from- Source node.node_name- The name of node. Valid values:DOCKER_IMAGE_BUILD,DOCKER_IMAGE_PUSH,VULNERABILITY_SCANNING,ACTIVATE_REPLICATION,TRIGGER,SNAPSHOT,TRIGGER_SNAPSHOT.
to- Destination node.node_name- The name of node. Valid values:DOCKER_IMAGE_BUILD,DOCKER_IMAGE_PUSH,VULNERABILITY_SCANNING,ACTIVATE_REPLICATION,TRIGGER,SNAPSHOT,TRIGGER_SNAPSHOT.
nodes- Each node in the delivery chain.node_name- The name of delivery chain node.enable- Whether to enable the delivery chain node. Valid values:true,false.node_config- The configuration of delivery chain node.deny_policy- Blocking rules for scanning nodes in delivery chain nodes. Note: Whennode_nameisVULNERABILITY_SCANNING, the parameters indeny_policyneed to be filled in.issue_count- The count of scanning vulnerabilities that triggers blocking.issue_level- The level of scanning vulnerability that triggers blocking. Valid values:LOW,MEDIUM,HIGH,UNKNOWN.logic- The logic of trigger blocking. Valid values:AND,OR.action- The action of trigger blocking. Valid values:BLOCK,BLOCK_RETAG,BLOCK_DELETE_TAG. WhileBlockmeans block the delivery chain from continuing to execute,BLOCK_RETAGmeans block overwriting push image tag,BLOCK_DELETE_TAGmeans block deletion of mirror tags.
create_time- The creation time of delivery chain.modified_time- The modification time of delivery chain description.scope_id- Delivery chain scope ID.scope_type- Delivery chain scope type.
该文章对您有帮助吗?