Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi
alicloud.ecs.getEcsKeyPairs
Explore with Pulumi AI
This data source provides the Ecs Key Pairs of the current Alibaba Cloud user.
NOTE: Available in v1.121.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = alicloud.ecs.getEcsKeyPairs({
    ids: ["key_pair_name"],
    nameRegex: "key_pair_name",
});
export const firstEcsKeyPairId = example.then(example => example.pairs?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.ecs.get_ecs_key_pairs(ids=["key_pair_name"],
    name_regex="key_pair_name")
pulumi.export("firstEcsKeyPairId", example.pairs[0].id)
package main
import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := ecs.GetEcsKeyPairs(ctx, &ecs.GetEcsKeyPairsArgs{
			Ids: []string{
				"key_pair_name",
			},
			NameRegex: pulumi.StringRef("key_pair_name"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("firstEcsKeyPairId", example.Pairs[0].Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var example = AliCloud.Ecs.GetEcsKeyPairs.Invoke(new()
    {
        Ids = new[]
        {
            "key_pair_name",
        },
        NameRegex = "key_pair_name",
    });
    return new Dictionary<string, object?>
    {
        ["firstEcsKeyPairId"] = example.Apply(getEcsKeyPairsResult => getEcsKeyPairsResult.Pairs[0]?.Id),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ecs.EcsFunctions;
import com.pulumi.alicloud.ecs.inputs.GetEcsKeyPairsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var example = EcsFunctions.getEcsKeyPairs(GetEcsKeyPairsArgs.builder()
            .ids("key_pair_name")
            .nameRegex("key_pair_name")
            .build());
        ctx.export("firstEcsKeyPairId", example.applyValue(getEcsKeyPairsResult -> getEcsKeyPairsResult.pairs()[0].id()));
    }
}
variables:
  example:
    fn::invoke:
      function: alicloud:ecs:getEcsKeyPairs
      arguments:
        ids:
          - key_pair_name
        nameRegex: key_pair_name
outputs:
  firstEcsKeyPairId: ${example.pairs[0].id}
Using getEcsKeyPairs
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getEcsKeyPairs(args: GetEcsKeyPairsArgs, opts?: InvokeOptions): Promise<GetEcsKeyPairsResult>
function getEcsKeyPairsOutput(args: GetEcsKeyPairsOutputArgs, opts?: InvokeOptions): Output<GetEcsKeyPairsResult>def get_ecs_key_pairs(finger_print: Optional[str] = None,
                      ids: Optional[Sequence[str]] = None,
                      name_regex: Optional[str] = None,
                      output_file: Optional[str] = None,
                      resource_group_id: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None,
                      opts: Optional[InvokeOptions] = None) -> GetEcsKeyPairsResult
def get_ecs_key_pairs_output(finger_print: Optional[pulumi.Input[str]] = None,
                      ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                      name_regex: Optional[pulumi.Input[str]] = None,
                      output_file: Optional[pulumi.Input[str]] = None,
                      resource_group_id: Optional[pulumi.Input[str]] = None,
                      tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetEcsKeyPairsResult]func GetEcsKeyPairs(ctx *Context, args *GetEcsKeyPairsArgs, opts ...InvokeOption) (*GetEcsKeyPairsResult, error)
func GetEcsKeyPairsOutput(ctx *Context, args *GetEcsKeyPairsOutputArgs, opts ...InvokeOption) GetEcsKeyPairsResultOutput> Note: This function is named GetEcsKeyPairs in the Go SDK.
public static class GetEcsKeyPairs 
{
    public static Task<GetEcsKeyPairsResult> InvokeAsync(GetEcsKeyPairsArgs args, InvokeOptions? opts = null)
    public static Output<GetEcsKeyPairsResult> Invoke(GetEcsKeyPairsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetEcsKeyPairsResult> getEcsKeyPairs(GetEcsKeyPairsArgs args, InvokeOptions options)
public static Output<GetEcsKeyPairsResult> getEcsKeyPairs(GetEcsKeyPairsArgs args, InvokeOptions options)
fn::invoke:
  function: alicloud:ecs/getEcsKeyPairs:getEcsKeyPairs
  arguments:
    # arguments dictionaryThe following arguments are supported:
- FingerPrint string
- The finger print of the key pair.
- Ids List<string>
- A list of Key Pair IDs.
- NameRegex string
- A regex string to filter results by Key Pair name.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- ResourceGroup stringId 
- The resource group Id.
- Dictionary<string, string>
- FingerPrint string
- The finger print of the key pair.
- Ids []string
- A list of Key Pair IDs.
- NameRegex string
- A regex string to filter results by Key Pair name.
- OutputFile string
- File name where to save data source results (after running pulumi preview).
- ResourceGroup stringId 
- The resource group Id.
- map[string]string
- fingerPrint String
- The finger print of the key pair.
- ids List<String>
- A list of Key Pair IDs.
- nameRegex String
- A regex string to filter results by Key Pair name.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- resourceGroup StringId 
- The resource group Id.
- Map<String,String>
- fingerPrint string
- The finger print of the key pair.
- ids string[]
- A list of Key Pair IDs.
- nameRegex string
- A regex string to filter results by Key Pair name.
- outputFile string
- File name where to save data source results (after running pulumi preview).
- resourceGroup stringId 
- The resource group Id.
- {[key: string]: string}
- finger_print str
- The finger print of the key pair.
- ids Sequence[str]
- A list of Key Pair IDs.
- name_regex str
- A regex string to filter results by Key Pair name.
- output_file str
- File name where to save data source results (after running pulumi preview).
- resource_group_ strid 
- The resource group Id.
- Mapping[str, str]
- fingerPrint String
- The finger print of the key pair.
- ids List<String>
- A list of Key Pair IDs.
- nameRegex String
- A regex string to filter results by Key Pair name.
- outputFile String
- File name where to save data source results (after running pulumi preview).
- resourceGroup StringId 
- The resource group Id.
- Map<String>
getEcsKeyPairs Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- KeyPairs List<Pulumi.Ali Cloud. Ecs. Outputs. Get Ecs Key Pairs Key Pair> 
- Names List<string>
- Pairs
List<Pulumi.Ali Cloud. Ecs. Outputs. Get Ecs Key Pairs Pair> 
- FingerPrint string
- NameRegex string
- OutputFile string
- ResourceGroup stringId 
- Dictionary<string, string>
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- KeyPairs []GetEcs Key Pairs Key Pair 
- Names []string
- Pairs
[]GetEcs Key Pairs Pair 
- FingerPrint string
- NameRegex string
- OutputFile string
- ResourceGroup stringId 
- map[string]string
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- keyPairs List<GetEcs Key Pairs Key Pair> 
- names List<String>
- pairs
List<GetEcs Key Pairs Pair> 
- fingerPrint String
- nameRegex String
- outputFile String
- resourceGroup StringId 
- Map<String,String>
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- keyPairs GetEcs Key Pairs Key Pair[] 
- names string[]
- pairs
GetEcs Key Pairs Pair[] 
- fingerPrint string
- nameRegex string
- outputFile string
- resourceGroup stringId 
- {[key: string]: string}
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- key_pairs Sequence[GetEcs Key Pairs Key Pair] 
- names Sequence[str]
- pairs
Sequence[GetEcs Key Pairs Pair] 
- finger_print str
- name_regex str
- output_file str
- resource_group_ strid 
- Mapping[str, str]
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- keyPairs List<Property Map>
- names List<String>
- pairs List<Property Map>
- fingerPrint String
- nameRegex String
- outputFile String
- resourceGroup StringId 
- Map<String>
Supporting Types
GetEcsKeyPairsKeyPair     
- FingerPrint string
- The finger print of the key pair.
- Id string
- The ID of the Key Pair.
- Instances
List<Pulumi.Ali Cloud. Ecs. Inputs. Get Ecs Key Pairs Key Pair Instance> 
- A list of ECS instances that has been bound this key pair.
- KeyName string
- The Key Pair Name.
- KeyPair stringName 
- ResourceGroup stringId 
- The resource group Id.
- Dictionary<string, string>
- The tags.
- FingerPrint string
- The finger print of the key pair.
- Id string
- The ID of the Key Pair.
- Instances
[]GetEcs Key Pairs Key Pair Instance 
- A list of ECS instances that has been bound this key pair.
- KeyName string
- The Key Pair Name.
- KeyPair stringName 
- ResourceGroup stringId 
- The resource group Id.
- map[string]string
- The tags.
- fingerPrint String
- The finger print of the key pair.
- id String
- The ID of the Key Pair.
- instances
List<GetEcs Key Pairs Key Pair Instance> 
- A list of ECS instances that has been bound this key pair.
- keyName String
- The Key Pair Name.
- keyPair StringName 
- resourceGroup StringId 
- The resource group Id.
- Map<String,String>
- The tags.
- fingerPrint string
- The finger print of the key pair.
- id string
- The ID of the Key Pair.
- instances
GetEcs Key Pairs Key Pair Instance[] 
- A list of ECS instances that has been bound this key pair.
- keyName string
- The Key Pair Name.
- keyPair stringName 
- resourceGroup stringId 
- The resource group Id.
- {[key: string]: string}
- The tags.
- finger_print str
- The finger print of the key pair.
- id str
- The ID of the Key Pair.
- instances
Sequence[GetEcs Key Pairs Key Pair Instance] 
- A list of ECS instances that has been bound this key pair.
- key_name str
- The Key Pair Name.
- key_pair_ strname 
- resource_group_ strid 
- The resource group Id.
- Mapping[str, str]
- The tags.
- fingerPrint String
- The finger print of the key pair.
- id String
- The ID of the Key Pair.
- instances List<Property Map>
- A list of ECS instances that has been bound this key pair.
- keyName String
- The Key Pair Name.
- keyPair StringName 
- resourceGroup StringId 
- The resource group Id.
- Map<String>
- The tags.
GetEcsKeyPairsKeyPairInstance      
- AvailabilityZone string
- The ID of the availability zone where the ECS instance is located.
- Description string
- ImageId string
- InstanceId string
- The ID of the ECS instance.
- InstanceName string
- The name of the ECS instance.
- InstanceType string
- KeyName string
- The Key Pair Name.
- PrivateIp string
- The private IP address of the ECS instance.
- PublicIp string
- The public IP address or EIP of the ECS instance.
- RegionId string
- Status string
- VswitchId string
- The ID of the vSwitch attached to the ECS instance.
- AvailabilityZone string
- The ID of the availability zone where the ECS instance is located.
- Description string
- ImageId string
- InstanceId string
- The ID of the ECS instance.
- InstanceName string
- The name of the ECS instance.
- InstanceType string
- KeyName string
- The Key Pair Name.
- PrivateIp string
- The private IP address of the ECS instance.
- PublicIp string
- The public IP address or EIP of the ECS instance.
- RegionId string
- Status string
- VswitchId string
- The ID of the vSwitch attached to the ECS instance.
- availabilityZone String
- The ID of the availability zone where the ECS instance is located.
- description String
- imageId String
- instanceId String
- The ID of the ECS instance.
- instanceName String
- The name of the ECS instance.
- instanceType String
- keyName String
- The Key Pair Name.
- privateIp String
- The private IP address of the ECS instance.
- publicIp String
- The public IP address or EIP of the ECS instance.
- regionId String
- status String
- vswitchId String
- The ID of the vSwitch attached to the ECS instance.
- availabilityZone string
- The ID of the availability zone where the ECS instance is located.
- description string
- imageId string
- instanceId string
- The ID of the ECS instance.
- instanceName string
- The name of the ECS instance.
- instanceType string
- keyName string
- The Key Pair Name.
- privateIp string
- The private IP address of the ECS instance.
- publicIp string
- The public IP address or EIP of the ECS instance.
- regionId string
- status string
- vswitchId string
- The ID of the vSwitch attached to the ECS instance.
- availability_zone str
- The ID of the availability zone where the ECS instance is located.
- description str
- image_id str
- instance_id str
- The ID of the ECS instance.
- instance_name str
- The name of the ECS instance.
- instance_type str
- key_name str
- The Key Pair Name.
- private_ip str
- The private IP address of the ECS instance.
- public_ip str
- The public IP address or EIP of the ECS instance.
- region_id str
- status str
- vswitch_id str
- The ID of the vSwitch attached to the ECS instance.
- availabilityZone String
- The ID of the availability zone where the ECS instance is located.
- description String
- imageId String
- instanceId String
- The ID of the ECS instance.
- instanceName String
- The name of the ECS instance.
- instanceType String
- keyName String
- The Key Pair Name.
- privateIp String
- The private IP address of the ECS instance.
- publicIp String
- The public IP address or EIP of the ECS instance.
- regionId String
- status String
- vswitchId String
- The ID of the vSwitch attached to the ECS instance.
GetEcsKeyPairsPair    
- FingerPrint string
- The finger print of the key pair.
- Id string
- The ID of the Key Pair.
- Instances
List<Pulumi.Ali Cloud. Ecs. Inputs. Get Ecs Key Pairs Pair Instance> 
- A list of ECS instances that has been bound this key pair.
- KeyName string
- The Key Pair Name.
- KeyPair stringName 
- ResourceGroup stringId 
- The Resource Group Id.
- Dictionary<string, string>
- The tags.
- FingerPrint string
- The finger print of the key pair.
- Id string
- The ID of the Key Pair.
- Instances
[]GetEcs Key Pairs Pair Instance 
- A list of ECS instances that has been bound this key pair.
- KeyName string
- The Key Pair Name.
- KeyPair stringName 
- ResourceGroup stringId 
- The Resource Group Id.
- map[string]string
- The tags.
- fingerPrint String
- The finger print of the key pair.
- id String
- The ID of the Key Pair.
- instances
List<GetEcs Key Pairs Pair Instance> 
- A list of ECS instances that has been bound this key pair.
- keyName String
- The Key Pair Name.
- keyPair StringName 
- resourceGroup StringId 
- The Resource Group Id.
- Map<String,String>
- The tags.
- fingerPrint string
- The finger print of the key pair.
- id string
- The ID of the Key Pair.
- instances
GetEcs Key Pairs Pair Instance[] 
- A list of ECS instances that has been bound this key pair.
- keyName string
- The Key Pair Name.
- keyPair stringName 
- resourceGroup stringId 
- The Resource Group Id.
- {[key: string]: string}
- The tags.
- finger_print str
- The finger print of the key pair.
- id str
- The ID of the Key Pair.
- instances
Sequence[GetEcs Key Pairs Pair Instance] 
- A list of ECS instances that has been bound this key pair.
- key_name str
- The Key Pair Name.
- key_pair_ strname 
- resource_group_ strid 
- The Resource Group Id.
- Mapping[str, str]
- The tags.
- fingerPrint String
- The finger print of the key pair.
- id String
- The ID of the Key Pair.
- instances List<Property Map>
- A list of ECS instances that has been bound this key pair.
- keyName String
- The Key Pair Name.
- keyPair StringName 
- resourceGroup StringId 
- The Resource Group Id.
- Map<String>
- The tags.
GetEcsKeyPairsPairInstance     
- AvailabilityZone string
- The ID of the availability zone where the ECS instance is located.
- Description string
- ImageId string
- InstanceId string
- The ID of the ECS instance.
- InstanceName string
- The name of the ECS instance.
- InstanceType string
- KeyName string
- The Key Pair Name.
- PrivateIp string
- The private IP address of the ECS instance.
- PublicIp string
- The public IP address or EIP of the ECS instance.
- RegionId string
- Status string
- VswitchId string
- The ID of the vSwitch attached to the ECS instance.
- AvailabilityZone string
- The ID of the availability zone where the ECS instance is located.
- Description string
- ImageId string
- InstanceId string
- The ID of the ECS instance.
- InstanceName string
- The name of the ECS instance.
- InstanceType string
- KeyName string
- The Key Pair Name.
- PrivateIp string
- The private IP address of the ECS instance.
- PublicIp string
- The public IP address or EIP of the ECS instance.
- RegionId string
- Status string
- VswitchId string
- The ID of the vSwitch attached to the ECS instance.
- availabilityZone String
- The ID of the availability zone where the ECS instance is located.
- description String
- imageId String
- instanceId String
- The ID of the ECS instance.
- instanceName String
- The name of the ECS instance.
- instanceType String
- keyName String
- The Key Pair Name.
- privateIp String
- The private IP address of the ECS instance.
- publicIp String
- The public IP address or EIP of the ECS instance.
- regionId String
- status String
- vswitchId String
- The ID of the vSwitch attached to the ECS instance.
- availabilityZone string
- The ID of the availability zone where the ECS instance is located.
- description string
- imageId string
- instanceId string
- The ID of the ECS instance.
- instanceName string
- The name of the ECS instance.
- instanceType string
- keyName string
- The Key Pair Name.
- privateIp string
- The private IP address of the ECS instance.
- publicIp string
- The public IP address or EIP of the ECS instance.
- regionId string
- status string
- vswitchId string
- The ID of the vSwitch attached to the ECS instance.
- availability_zone str
- The ID of the availability zone where the ECS instance is located.
- description str
- image_id str
- instance_id str
- The ID of the ECS instance.
- instance_name str
- The name of the ECS instance.
- instance_type str
- key_name str
- The Key Pair Name.
- private_ip str
- The private IP address of the ECS instance.
- public_ip str
- The public IP address or EIP of the ECS instance.
- region_id str
- status str
- vswitch_id str
- The ID of the vSwitch attached to the ECS instance.
- availabilityZone String
- The ID of the availability zone where the ECS instance is located.
- description String
- imageId String
- instanceId String
- The ID of the ECS instance.
- instanceName String
- The name of the ECS instance.
- instanceType String
- keyName String
- The Key Pair Name.
- privateIp String
- The private IP address of the ECS instance.
- publicIp String
- The public IP address or EIP of the ECS instance.
- regionId String
- status String
- vswitchId String
- The ID of the vSwitch attached to the ECS instance.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the alicloudTerraform Provider.