AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi
aws.ssm.getInstances
Explore with Pulumi AI
Use this data source to get the instance IDs of SSM managed instances.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.ssm.getInstances({
filters: [{
name: "PlatformTypes",
values: ["Linux"],
}],
});
import pulumi
import pulumi_aws as aws
example = aws.ssm.get_instances(filters=[{
"name": "PlatformTypes",
"values": ["Linux"],
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ssm.GetInstances(ctx, &ssm.GetInstancesArgs{
Filters: []ssm.GetInstancesFilter{
{
Name: "PlatformTypes",
Values: []string{
"Linux",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.Ssm.GetInstances.Invoke(new()
{
Filters = new[]
{
new Aws.Ssm.Inputs.GetInstancesFilterInputArgs
{
Name = "PlatformTypes",
Values = new[]
{
"Linux",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ssm.SsmFunctions;
import com.pulumi.aws.ssm.inputs.GetInstancesArgs;
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 = SsmFunctions.getInstances(GetInstancesArgs.builder()
.filters(GetInstancesFilterArgs.builder()
.name("PlatformTypes")
.values("Linux")
.build())
.build());
}
}
variables:
example:
fn::invoke:
Function: aws:ssm:getInstances
Arguments:
filters:
- name: PlatformTypes
values:
- Linux
Using getInstances
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 getInstances(args: GetInstancesArgs, opts?: InvokeOptions): Promise<GetInstancesResult>
function getInstancesOutput(args: GetInstancesOutputArgs, opts?: InvokeOptions): Output<GetInstancesResult>
def get_instances(filters: Optional[Sequence[GetInstancesFilter]] = None,
opts: Optional[InvokeOptions] = None) -> GetInstancesResult
def get_instances_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetInstancesFilterArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstancesResult]
func GetInstances(ctx *Context, args *GetInstancesArgs, opts ...InvokeOption) (*GetInstancesResult, error)
func GetInstancesOutput(ctx *Context, args *GetInstancesOutputArgs, opts ...InvokeOption) GetInstancesResultOutput
> Note: This function is named GetInstances
in the Go SDK.
public static class GetInstances
{
public static Task<GetInstancesResult> InvokeAsync(GetInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetInstancesResult> Invoke(GetInstancesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInstancesResult> getInstances(GetInstancesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:ssm/getInstances:getInstances
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Instances Filter> - Configuration block(s) for filtering. Detailed below.
- Filters
[]Get
Instances Filter - Configuration block(s) for filtering. Detailed below.
- filters
List<Get
Instances Filter> - Configuration block(s) for filtering. Detailed below.
- filters
Get
Instances Filter[] - Configuration block(s) for filtering. Detailed below.
- filters
Sequence[Get
Instances Filter] - Configuration block(s) for filtering. Detailed below.
- filters List<Property Map>
- Configuration block(s) for filtering. Detailed below.
getInstances Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Set of instance IDs of the matched SSM managed instances.
- Filters
List<Get
Instances Filter>
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Set of instance IDs of the matched SSM managed instances.
- Filters
[]Get
Instances Filter
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- Set of instance IDs of the matched SSM managed instances.
- filters
List<Get
Instances Filter>
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- Set of instance IDs of the matched SSM managed instances.
- filters
Get
Instances Filter[]
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- Set of instance IDs of the matched SSM managed instances.
- filters
Sequence[Get
Instances Filter]
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- Set of instance IDs of the matched SSM managed instances.
- filters List<Property Map>
Supporting Types
GetInstancesFilter
- Name string
- Name of the filter field. Valid values can be found in the SSM InstanceInformationStringFilter API Reference.
- Values List<string>
- Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- Name string
- Name of the filter field. Valid values can be found in the SSM InstanceInformationStringFilter API Reference.
- Values []string
- Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name String
- Name of the filter field. Valid values can be found in the SSM InstanceInformationStringFilter API Reference.
- values List<String>
- Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name string
- Name of the filter field. Valid values can be found in the SSM InstanceInformationStringFilter API Reference.
- values string[]
- Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name str
- Name of the filter field. Valid values can be found in the SSM InstanceInformationStringFilter API Reference.
- values Sequence[str]
- Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name String
- Name of the filter field. Valid values can be found in the SSM InstanceInformationStringFilter API Reference.
- values List<String>
- Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.