outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getAccessKey
Explore with Pulumi AI
Provides information about an access key.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Get one of your own access keys (root account or user)
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const accessKey01 = outscale.getAccessKey({
filters: [{
name: "access_key_ids",
values: ["ABCDEFGHIJ0123456789"],
}],
});
import pulumi
import pulumi_outscale as outscale
access_key01 = outscale.get_access_key(filters=[{
"name": "access_key_ids",
"values": ["ABCDEFGHIJ0123456789"],
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.LookupAccessKey(ctx, &outscale.LookupAccessKeyArgs{
Filters: []outscale.GetAccessKeyFilter{
{
Name: "access_key_ids",
Values: []string{
"ABCDEFGHIJ0123456789",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var accessKey01 = Outscale.GetAccessKey.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetAccessKeyFilterInputArgs
{
Name = "access_key_ids",
Values = new[]
{
"ABCDEFGHIJ0123456789",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.OutscaleFunctions;
import com.pulumi.outscale.inputs.GetAccessKeyArgs;
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 accessKey01 = OutscaleFunctions.getAccessKey(GetAccessKeyArgs.builder()
.filters(GetAccessKeyFilterArgs.builder()
.name("access_key_ids")
.values("ABCDEFGHIJ0123456789")
.build())
.build());
}
}
variables:
accessKey01:
fn::invoke:
function: outscale:getAccessKey
arguments:
filters:
- name: access_key_ids
values:
- ABCDEFGHIJ0123456789
Get the access key of another user
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const accessKey01 = outscale.getAccessKey({
filters: [
{
name: "access_key_ids",
values: ["XXXXXXXXX"],
},
{
name: "states",
values: ["ACTIVE"],
},
],
userName: "user_name",
});
import pulumi
import pulumi_outscale as outscale
access_key01 = outscale.get_access_key(filters=[
{
"name": "access_key_ids",
"values": ["XXXXXXXXX"],
},
{
"name": "states",
"values": ["ACTIVE"],
},
],
user_name="user_name")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.LookupAccessKey(ctx, &outscale.LookupAccessKeyArgs{
Filters: []outscale.GetAccessKeyFilter{
{
Name: "access_key_ids",
Values: []string{
"XXXXXXXXX",
},
},
{
Name: "states",
Values: []string{
"ACTIVE",
},
},
},
UserName: pulumi.StringRef("user_name"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var accessKey01 = Outscale.GetAccessKey.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetAccessKeyFilterInputArgs
{
Name = "access_key_ids",
Values = new[]
{
"XXXXXXXXX",
},
},
new Outscale.Inputs.GetAccessKeyFilterInputArgs
{
Name = "states",
Values = new[]
{
"ACTIVE",
},
},
},
UserName = "user_name",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.OutscaleFunctions;
import com.pulumi.outscale.inputs.GetAccessKeyArgs;
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 accessKey01 = OutscaleFunctions.getAccessKey(GetAccessKeyArgs.builder()
.filters(
GetAccessKeyFilterArgs.builder()
.name("access_key_ids")
.values("XXXXXXXXX")
.build(),
GetAccessKeyFilterArgs.builder()
.name("states")
.values("ACTIVE")
.build())
.userName("user_name")
.build());
}
}
variables:
accessKey01:
fn::invoke:
function: outscale:getAccessKey
arguments:
filters:
- name: access_key_ids
values:
- XXXXXXXXX
- name: states
values:
- ACTIVE
userName: user_name
Using getAccessKey
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 getAccessKey(args: GetAccessKeyArgs, opts?: InvokeOptions): Promise<GetAccessKeyResult>
function getAccessKeyOutput(args: GetAccessKeyOutputArgs, opts?: InvokeOptions): Output<GetAccessKeyResult>
def get_access_key(access_key_id: Optional[str] = None,
filters: Optional[Sequence[GetAccessKeyFilter]] = None,
id: Optional[str] = None,
state: Optional[str] = None,
user_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAccessKeyResult
def get_access_key_output(access_key_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAccessKeyFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
user_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAccessKeyResult]
func LookupAccessKey(ctx *Context, args *LookupAccessKeyArgs, opts ...InvokeOption) (*LookupAccessKeyResult, error)
func LookupAccessKeyOutput(ctx *Context, args *LookupAccessKeyOutputArgs, opts ...InvokeOption) LookupAccessKeyResultOutput
> Note: This function is named LookupAccessKey
in the Go SDK.
public static class GetAccessKey
{
public static Task<GetAccessKeyResult> InvokeAsync(GetAccessKeyArgs args, InvokeOptions? opts = null)
public static Output<GetAccessKeyResult> Invoke(GetAccessKeyInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAccessKeyResult> getAccessKey(GetAccessKeyArgs args, InvokeOptions options)
public static Output<GetAccessKeyResult> getAccessKey(GetAccessKeyArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getAccessKey:getAccessKey
arguments:
# arguments dictionary
The following arguments are supported:
- Access
Key stringId - The ID of the access key.
- Filters
List<Get
Access Key Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- State string
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - User
Name string - The name of the EIM user. By default, the user who sends the request (which can be the root account).
- Access
Key stringId - The ID of the access key.
- Filters
[]Get
Access Key Filter - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- State string
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - User
Name string - The name of the EIM user. By default, the user who sends the request (which can be the root account).
- access
Key StringId - The ID of the access key.
- filters
List<Get
Access Key Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
- state String
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user
Name String - The name of the EIM user. By default, the user who sends the request (which can be the root account).
- access
Key stringId - The ID of the access key.
- filters
Get
Access Key Filter[] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id string
- state string
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user
Name string - The name of the EIM user. By default, the user who sends the request (which can be the root account).
- access_
key_ strid - The ID of the access key.
- filters
Sequence[Get
Access Key Filter] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id str
- state str
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user_
name str - The name of the EIM user. By default, the user who sends the request (which can be the root account).
- access
Key StringId - The ID of the access key.
- filters List<Property Map>
- A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
- state String
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user
Name String - The name of the EIM user. By default, the user who sends the request (which can be the root account).
getAccessKey Result
The following output properties are available:
- Creation
Date string - The date and time (UTC) at which the access key was created.
- Expiration
Date string - The date and time (UTC) at which the access key expires.
- Id string
- Last
Modification stringDate - The date and time (UTC) at which the access key was last modified.
- Request
Id string - Access
Key stringId - The ID of the access key.
- Filters
List<Get
Access Key Filter> - State string
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - User
Name string
- Creation
Date string - The date and time (UTC) at which the access key was created.
- Expiration
Date string - The date and time (UTC) at which the access key expires.
- Id string
- Last
Modification stringDate - The date and time (UTC) at which the access key was last modified.
- Request
Id string - Access
Key stringId - The ID of the access key.
- Filters
[]Get
Access Key Filter - State string
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - User
Name string
- creation
Date String - The date and time (UTC) at which the access key was created.
- expiration
Date String - The date and time (UTC) at which the access key expires.
- id String
- last
Modification StringDate - The date and time (UTC) at which the access key was last modified.
- request
Id String - access
Key StringId - The ID of the access key.
- filters
List<Get
Access Key Filter> - state String
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user
Name String
- creation
Date string - The date and time (UTC) at which the access key was created.
- expiration
Date string - The date and time (UTC) at which the access key expires.
- id string
- last
Modification stringDate - The date and time (UTC) at which the access key was last modified.
- request
Id string - access
Key stringId - The ID of the access key.
- filters
Get
Access Key Filter[] - state string
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user
Name string
- creation_
date str - The date and time (UTC) at which the access key was created.
- expiration_
date str - The date and time (UTC) at which the access key expires.
- id str
- last_
modification_ strdate - The date and time (UTC) at which the access key was last modified.
- request_
id str - access_
key_ strid - The ID of the access key.
- filters
Sequence[Get
Access Key Filter] - state str
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user_
name str
- creation
Date String - The date and time (UTC) at which the access key was created.
- expiration
Date String - The date and time (UTC) at which the access key expires.
- id String
- last
Modification StringDate - The date and time (UTC) at which the access key was last modified.
- request
Id String - access
Key StringId - The ID of the access key.
- filters List<Property Map>
- state String
- The state of the access key (
ACTIVE
if the key is valid for API calls, orINACTIVE
if not). - user
Name String
Supporting Types
GetAccessKeyFilter
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.