alicloud_key_pairs
更新时间:
-> DEPRECATED: This datasource has been renamed to alicloud_ecs_key_pairs from version 1.121.0.
This data source provides a list of key pairs in an Alibaba Cloud account according to the specified filters.
Example Usage
# Declare the data source
resource "alicloud_key_pair" "default" {
key_name = "keyPairDatasource"
}
data "alicloud_key_pairs" "default" {
name_regex = "${alicloud_key_pair.default.key_name}"
}
Argument Reference
The following arguments are supported:
name_regex- (Optional) A regex string to apply to the resulting key pairs.ids- (Optional, Available 1.52.1+) A list of key pair IDs.finger_print- (Optional) A finger print used to retrieve specified key pair.output_file- (Optional) File name where to save data source results (after runningterraform plan).resource_group_id- (Optional, ForceNew, Available in 1.57.0+) The Id of resource group which the key pair belongs.tags- (Optional, Available in v1.66.0+) A mapping of tags to assign to the resource.
Attributes Reference
The following attributes are exported in addition to the arguments listed above:
names- A list of key pair names.key_pairs- A list of key pairs. Each element contains the following attributes:id- ID of the key pair.key_name- Name of the key pair.finger_print- Finger print of the key pair.instances- A list of ECS instances that has been bound this key pair.availability_zone- The ID of the availability zone where the ECS instance is located.instance_id- The ID of the ECS instance.instance_name- The name of the ECS instance.vswitch_id- The ID of the vSwitch attached to the ECS instance.public_ip- The public IP address or EIP of the ECS instance.private_ip- The private IP address of the ECS instance.resource_group_id- The Id of resource group.tags- (Optional, Available in v1.66.0+) A mapping of tags to assign to the resource.
该文章对您有帮助吗?