Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine
volcengine.kms.getKeys
Explore with Pulumi AI
Use this data source to query detailed information of kms keys
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const default = volcengine.kms.getKeys({
creationDateRanges: [
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
],
descriptions: ["tf-test"],
keyNames: [
"mrk-tf-key-mod",
"mrk-tf-key",
],
keySpecs: ["SYMMETRIC_256"],
keyStates: ["Enable"],
keyUsages: ["ENCRYPT_DECRYPT"],
keyringId: "7a358829-bd5a-4763-ba77-7500ecxxxxxx",
origins: ["CloudKMS"],
protectionLevels: ["SOFTWARE"],
rotateStates: ["Enable"],
tags: [{
key: "tf-k1",
values: ["tf-v1"],
}],
updateDateRanges: [
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
],
});
import pulumi
import pulumi_volcengine as volcengine
default = volcengine.kms.get_keys(creation_date_ranges=[
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
],
descriptions=["tf-test"],
key_names=[
"mrk-tf-key-mod",
"mrk-tf-key",
],
key_specs=["SYMMETRIC_256"],
key_states=["Enable"],
key_usages=["ENCRYPT_DECRYPT"],
keyring_id="7a358829-bd5a-4763-ba77-7500ecxxxxxx",
origins=["CloudKMS"],
protection_levels=["SOFTWARE"],
rotate_states=["Enable"],
tags=[volcengine.kms.GetKeysTagArgs(
key="tf-k1",
values=["tf-v1"],
)],
update_date_ranges=[
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/kms"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kms.GetKeys(ctx, &kms.GetKeysArgs{
CreationDateRanges: []string{
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
},
Descriptions: []string{
"tf-test",
},
KeyNames: []string{
"mrk-tf-key-mod",
"mrk-tf-key",
},
KeySpecs: []string{
"SYMMETRIC_256",
},
KeyStates: []string{
"Enable",
},
KeyUsages: []string{
"ENCRYPT_DECRYPT",
},
KeyringId: pulumi.StringRef("7a358829-bd5a-4763-ba77-7500ecxxxxxx"),
Origins: []string{
"CloudKMS",
},
ProtectionLevels: []string{
"SOFTWARE",
},
RotateStates: []string{
"Enable",
},
Tags: []kms.GetKeysTag{
{
Key: "tf-k1",
Values: []string{
"tf-v1",
},
},
},
UpdateDateRanges: []string{
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var @default = Volcengine.Kms.GetKeys.Invoke(new()
{
CreationDateRanges = new[]
{
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
},
Descriptions = new[]
{
"tf-test",
},
KeyNames = new[]
{
"mrk-tf-key-mod",
"mrk-tf-key",
},
KeySpecs = new[]
{
"SYMMETRIC_256",
},
KeyStates = new[]
{
"Enable",
},
KeyUsages = new[]
{
"ENCRYPT_DECRYPT",
},
KeyringId = "7a358829-bd5a-4763-ba77-7500ecxxxxxx",
Origins = new[]
{
"CloudKMS",
},
ProtectionLevels = new[]
{
"SOFTWARE",
},
RotateStates = new[]
{
"Enable",
},
Tags = new[]
{
new Volcengine.Kms.Inputs.GetKeysTagInputArgs
{
Key = "tf-k1",
Values = new[]
{
"tf-v1",
},
},
},
UpdateDateRanges = new[]
{
"2025-06-01 19:48:06",
"2025-06-04 19:48:06",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.kms.KmsFunctions;
import com.pulumi.volcengine.kms.inputs.GetKeysArgs;
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 default = KmsFunctions.getKeys(GetKeysArgs.builder()
.creationDateRanges(
"2025-06-01 19:48:06",
"2025-06-04 19:48:06")
.descriptions("tf-test")
.keyNames(
"mrk-tf-key-mod",
"mrk-tf-key")
.keySpecs("SYMMETRIC_256")
.keyStates("Enable")
.keyUsages("ENCRYPT_DECRYPT")
.keyringId("7a358829-bd5a-4763-ba77-7500ecxxxxxx")
.origins("CloudKMS")
.protectionLevels("SOFTWARE")
.rotateStates("Enable")
.tags(GetKeysTagArgs.builder()
.key("tf-k1")
.values("tf-v1")
.build())
.updateDateRanges(
"2025-06-01 19:48:06",
"2025-06-04 19:48:06")
.build());
}
}
variables:
default:
fn::invoke:
Function: volcengine:kms:getKeys
Arguments:
creationDateRanges:
- 2025-06-01 19:48:06
- 2025-06-04 19:48:06
descriptions:
- tf-test
keyNames:
- mrk-tf-key-mod
- mrk-tf-key
keySpecs:
- SYMMETRIC_256
keyStates:
- Enable
keyUsages:
- ENCRYPT_DECRYPT
keyringId: 7a358829-bd5a-4763-ba77-7500ecxxxxxx
origins:
- CloudKMS
protectionLevels:
- SOFTWARE
rotateStates:
- Enable
tags:
- key: tf-k1
values:
- tf-v1
updateDateRanges:
- 2025-06-01 19:48:06
- 2025-06-04 19:48:06
Using getKeys
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 getKeys(args: GetKeysArgs, opts?: InvokeOptions): Promise<GetKeysResult>
function getKeysOutput(args: GetKeysOutputArgs, opts?: InvokeOptions): Output<GetKeysResult>
def get_keys(creation_date_ranges: Optional[Sequence[str]] = None,
descriptions: Optional[Sequence[str]] = None,
key_names: Optional[Sequence[str]] = None,
key_specs: Optional[Sequence[str]] = None,
key_states: Optional[Sequence[str]] = None,
key_usages: Optional[Sequence[str]] = None,
keyring_id: Optional[str] = None,
keyring_name: Optional[str] = None,
name_regex: Optional[str] = None,
origins: Optional[Sequence[str]] = None,
output_file: Optional[str] = None,
protection_levels: Optional[Sequence[str]] = None,
rotate_states: Optional[Sequence[str]] = None,
tags: Optional[Sequence[GetKeysTag]] = None,
update_date_ranges: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetKeysResult
def get_keys_output(creation_date_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
descriptions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
key_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
key_specs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
key_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
key_usages: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
keyring_id: Optional[pulumi.Input[str]] = None,
keyring_name: Optional[pulumi.Input[str]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
origins: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
output_file: Optional[pulumi.Input[str]] = None,
protection_levels: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
rotate_states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
tags: Optional[pulumi.Input[Sequence[pulumi.Input[GetKeysTagArgs]]]] = None,
update_date_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetKeysResult]
func GetKeys(ctx *Context, args *GetKeysArgs, opts ...InvokeOption) (*GetKeysResult, error)
func GetKeysOutput(ctx *Context, args *GetKeysOutputArgs, opts ...InvokeOption) GetKeysResultOutput
> Note: This function is named GetKeys
in the Go SDK.
public static class GetKeys
{
public static Task<GetKeysResult> InvokeAsync(GetKeysArgs args, InvokeOptions? opts = null)
public static Output<GetKeysResult> Invoke(GetKeysInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetKeysResult> getKeys(GetKeysArgs args, InvokeOptions options)
public static Output<GetKeysResult> getKeys(GetKeysArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:kms/getKeys:getKeys
arguments:
# arguments dictionary
The following arguments are supported:
- Creation
Date List<string>Ranges - The creation date of the keyring.
- Descriptions List<string>
- The description of the key.
- Key
Names List<string> - The name of the key.
- Key
Specs List<string> - The algorithm used in the key.
- Key
States List<string> - The state of the key.
- Key
Usages List<string> - The usage of the key.
- Keyring
Id string - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- Keyring
Name string - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- Name
Regex string - A Name Regex of Resource.
- Origins List<string>
- The origin of the key.
- Output
File string - File name where to save data source results.
- Protection
Levels List<string> - The protection level of the key.
- Rotate
States List<string> - The state of the rotate.
- List<Get
Keys Tag> - A list of tags.
- Update
Date List<string>Ranges - The update date of the keyring.
- Creation
Date []stringRanges - The creation date of the keyring.
- Descriptions []string
- The description of the key.
- Key
Names []string - The name of the key.
- Key
Specs []string - The algorithm used in the key.
- Key
States []string - The state of the key.
- Key
Usages []string - The usage of the key.
- Keyring
Id string - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- Keyring
Name string - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- Name
Regex string - A Name Regex of Resource.
- Origins []string
- The origin of the key.
- Output
File string - File name where to save data source results.
- Protection
Levels []string - The protection level of the key.
- Rotate
States []string - The state of the rotate.
- []Get
Keys Tag - A list of tags.
- Update
Date []stringRanges - The update date of the keyring.
- creation
Date List<String>Ranges - The creation date of the keyring.
- descriptions List<String>
- The description of the key.
- key
Names List<String> - The name of the key.
- key
Specs List<String> - The algorithm used in the key.
- key
States List<String> - The state of the key.
- key
Usages List<String> - The usage of the key.
- keyring
Id String - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- keyring
Name String - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- name
Regex String - A Name Regex of Resource.
- origins List<String>
- The origin of the key.
- output
File String - File name where to save data source results.
- protection
Levels List<String> - The protection level of the key.
- rotate
States List<String> - The state of the rotate.
- List<Get
Keys Tag> - A list of tags.
- update
Date List<String>Ranges - The update date of the keyring.
- creation
Date string[]Ranges - The creation date of the keyring.
- descriptions string[]
- The description of the key.
- key
Names string[] - The name of the key.
- key
Specs string[] - The algorithm used in the key.
- key
States string[] - The state of the key.
- key
Usages string[] - The usage of the key.
- keyring
Id string - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- keyring
Name string - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- name
Regex string - A Name Regex of Resource.
- origins string[]
- The origin of the key.
- output
File string - File name where to save data source results.
- protection
Levels string[] - The protection level of the key.
- rotate
States string[] - The state of the rotate.
- Get
Keys Tag[] - A list of tags.
- update
Date string[]Ranges - The update date of the keyring.
- creation_
date_ Sequence[str]ranges - The creation date of the keyring.
- descriptions Sequence[str]
- The description of the key.
- key_
names Sequence[str] - The name of the key.
- key_
specs Sequence[str] - The algorithm used in the key.
- key_
states Sequence[str] - The state of the key.
- key_
usages Sequence[str] - The usage of the key.
- keyring_
id str - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- keyring_
name str - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- name_
regex str - A Name Regex of Resource.
- origins Sequence[str]
- The origin of the key.
- output_
file str - File name where to save data source results.
- protection_
levels Sequence[str] - The protection level of the key.
- rotate_
states Sequence[str] - The state of the rotate.
- Sequence[Get
Keys Tag] - A list of tags.
- update_
date_ Sequence[str]ranges - The update date of the keyring.
- creation
Date List<String>Ranges - The creation date of the keyring.
- descriptions List<String>
- The description of the key.
- key
Names List<String> - The name of the key.
- key
Specs List<String> - The algorithm used in the key.
- key
States List<String> - The state of the key.
- key
Usages List<String> - The usage of the key.
- keyring
Id String - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- keyring
Name String - Query the Key ring that meets the specified conditions, which is composed of key-value pairs.
- name
Regex String - A Name Regex of Resource.
- origins List<String>
- The origin of the key.
- output
File String - File name where to save data source results.
- protection
Levels List<String> - The protection level of the key.
- rotate
States List<String> - The state of the rotate.
- List<Property Map>
- A list of tags.
- update
Date List<String>Ranges - The update date of the keyring.
getKeys Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Keys
List<Get
Keys Key> - Master key list information.
- Total
Count int - The total count of query.
- Creation
Date List<string>Ranges - Descriptions List<string>
- The description of the key.
- Key
Names List<string> - The name of the key.
- Key
Specs List<string> - The algorithm used in the key.
- Key
States List<string> - The state of the key.
- Key
Usages List<string> - The usage of the key.
- Keyring
Id string - Keyring
Name string - Name
Regex string - Origins List<string>
- The origin of the key.
- Output
File string - Protection
Levels List<string> - The protection level of the key.
- Rotate
States List<string> - List<Get
Keys Tag> - Tags.
- Update
Date List<string>Ranges
- Id string
- The provider-assigned unique ID for this managed resource.
- Keys
[]Get
Keys Key - Master key list information.
- Total
Count int - The total count of query.
- Creation
Date []stringRanges - Descriptions []string
- The description of the key.
- Key
Names []string - The name of the key.
- Key
Specs []string - The algorithm used in the key.
- Key
States []string - The state of the key.
- Key
Usages []string - The usage of the key.
- Keyring
Id string - Keyring
Name string - Name
Regex string - Origins []string
- The origin of the key.
- Output
File string - Protection
Levels []string - The protection level of the key.
- Rotate
States []string - []Get
Keys Tag - Tags.
- Update
Date []stringRanges
- id String
- The provider-assigned unique ID for this managed resource.
- keys
List<Get
Keys Key> - Master key list information.
- total
Count Integer - The total count of query.
- creation
Date List<String>Ranges - descriptions List<String>
- The description of the key.
- key
Names List<String> - The name of the key.
- key
Specs List<String> - The algorithm used in the key.
- key
States List<String> - The state of the key.
- key
Usages List<String> - The usage of the key.
- keyring
Id String - keyring
Name String - name
Regex String - origins List<String>
- The origin of the key.
- output
File String - protection
Levels List<String> - The protection level of the key.
- rotate
States List<String> - List<Get
Keys Tag> - Tags.
- update
Date List<String>Ranges
- id string
- The provider-assigned unique ID for this managed resource.
- keys
Get
Keys Key[] - Master key list information.
- total
Count number - The total count of query.
- creation
Date string[]Ranges - descriptions string[]
- The description of the key.
- key
Names string[] - The name of the key.
- key
Specs string[] - The algorithm used in the key.
- key
States string[] - The state of the key.
- key
Usages string[] - The usage of the key.
- keyring
Id string - keyring
Name string - name
Regex string - origins string[]
- The origin of the key.
- output
File string - protection
Levels string[] - The protection level of the key.
- rotate
States string[] - Get
Keys Tag[] - Tags.
- update
Date string[]Ranges
- id str
- The provider-assigned unique ID for this managed resource.
- keys
Sequence[Get
Keys Key] - Master key list information.
- total_
count int - The total count of query.
- creation_
date_ Sequence[str]ranges - descriptions Sequence[str]
- The description of the key.
- key_
names Sequence[str] - The name of the key.
- key_
specs Sequence[str] - The algorithm used in the key.
- key_
states Sequence[str] - The state of the key.
- key_
usages Sequence[str] - The usage of the key.
- keyring_
id str - keyring_
name str - name_
regex str - origins Sequence[str]
- The origin of the key.
- output_
file str - protection_
levels Sequence[str] - The protection level of the key.
- rotate_
states Sequence[str] - Sequence[Get
Keys Tag] - Tags.
- update_
date_ Sequence[str]ranges
- id String
- The provider-assigned unique ID for this managed resource.
- keys List<Property Map>
- Master key list information.
- total
Count Number - The total count of query.
- creation
Date List<String>Ranges - descriptions List<String>
- The description of the key.
- key
Names List<String> - The name of the key.
- key
Specs List<String> - The algorithm used in the key.
- key
States List<String> - The state of the key.
- key
Usages List<String> - The usage of the key.
- keyring
Id String - keyring
Name String - name
Regex String - origins List<String>
- The origin of the key.
- output
File String - protection
Levels List<String> - The protection level of the key.
- rotate
States List<String> - List<Property Map>
- Tags.
- update
Date List<String>Ranges
Supporting Types
GetKeysKey
- Creation
Date int - The date when the keyring was created.
- Description string
- The description of the key.
- Id string
- The unique ID of the key.
- Key
Material stringExpire Time - The time when the key material will expire.
- Key
Name string - The name of the key.
- Key
Spec string - The algorithm used in the key.
- Key
State string - The state of the key.
- Key
Usage string - The usage of the key.
- Last
Rotation stringTime - The last time the key was rotated.
- Multi
Region bool - Whether it is the master key of the Multi-region type.
- Multi
Region GetConfiguration Keys Key Multi Region Configuration - The configuration of Multi-region key.
- Origin string
- The origin of the key.
- Protection
Level string - The protection level of the key.
- Rotation
State string - The rotation configuration of the key.
- Schedule
Delete stringTime - The time when the key will be deleted.
- Schedule
Rotation stringTime - The next time the key will be rotated.
- List<Get
Keys Key Tag> - A list of tags.
- Trn string
- The name of the resource.
- Update
Date int - The date when the keyring was updated.
- Creation
Date int - The date when the keyring was created.
- Description string
- The description of the key.
- Id string
- The unique ID of the key.
- Key
Material stringExpire Time - The time when the key material will expire.
- Key
Name string - The name of the key.
- Key
Spec string - The algorithm used in the key.
- Key
State string - The state of the key.
- Key
Usage string - The usage of the key.
- Last
Rotation stringTime - The last time the key was rotated.
- Multi
Region bool - Whether it is the master key of the Multi-region type.
- Multi
Region GetConfiguration Keys Key Multi Region Configuration - The configuration of Multi-region key.
- Origin string
- The origin of the key.
- Protection
Level string - The protection level of the key.
- Rotation
State string - The rotation configuration of the key.
- Schedule
Delete stringTime - The time when the key will be deleted.
- Schedule
Rotation stringTime - The next time the key will be rotated.
- []Get
Keys Key Tag - A list of tags.
- Trn string
- The name of the resource.
- Update
Date int - The date when the keyring was updated.
- creation
Date Integer - The date when the keyring was created.
- description String
- The description of the key.
- id String
- The unique ID of the key.
- key
Material StringExpire Time - The time when the key material will expire.
- key
Name String - The name of the key.
- key
Spec String - The algorithm used in the key.
- key
State String - The state of the key.
- key
Usage String - The usage of the key.
- last
Rotation StringTime - The last time the key was rotated.
- multi
Region Boolean - Whether it is the master key of the Multi-region type.
- multi
Region GetConfiguration Keys Key Multi Region Configuration - The configuration of Multi-region key.
- origin String
- The origin of the key.
- protection
Level String - The protection level of the key.
- rotation
State String - The rotation configuration of the key.
- schedule
Delete StringTime - The time when the key will be deleted.
- schedule
Rotation StringTime - The next time the key will be rotated.
- List<Get
Keys Key Tag> - A list of tags.
- trn String
- The name of the resource.
- update
Date Integer - The date when the keyring was updated.
- creation
Date number - The date when the keyring was created.
- description string
- The description of the key.
- id string
- The unique ID of the key.
- key
Material stringExpire Time - The time when the key material will expire.
- key
Name string - The name of the key.
- key
Spec string - The algorithm used in the key.
- key
State string - The state of the key.
- key
Usage string - The usage of the key.
- last
Rotation stringTime - The last time the key was rotated.
- multi
Region boolean - Whether it is the master key of the Multi-region type.
- multi
Region GetConfiguration Keys Key Multi Region Configuration - The configuration of Multi-region key.
- origin string
- The origin of the key.
- protection
Level string - The protection level of the key.
- rotation
State string - The rotation configuration of the key.
- schedule
Delete stringTime - The time when the key will be deleted.
- schedule
Rotation stringTime - The next time the key will be rotated.
- Get
Keys Key Tag[] - A list of tags.
- trn string
- The name of the resource.
- update
Date number - The date when the keyring was updated.
- creation_
date int - The date when the keyring was created.
- description str
- The description of the key.
- id str
- The unique ID of the key.
- key_
material_ strexpire_ time - The time when the key material will expire.
- key_
name str - The name of the key.
- key_
spec str - The algorithm used in the key.
- key_
state str - The state of the key.
- key_
usage str - The usage of the key.
- last_
rotation_ strtime - The last time the key was rotated.
- multi_
region bool - Whether it is the master key of the Multi-region type.
- multi_
region_ Getconfiguration Keys Key Multi Region Configuration - The configuration of Multi-region key.
- origin str
- The origin of the key.
- protection_
level str - The protection level of the key.
- rotation_
state str - The rotation configuration of the key.
- schedule_
delete_ strtime - The time when the key will be deleted.
- schedule_
rotation_ strtime - The next time the key will be rotated.
- Sequence[Get
Keys Key Tag] - A list of tags.
- trn str
- The name of the resource.
- update_
date int - The date when the keyring was updated.
- creation
Date Number - The date when the keyring was created.
- description String
- The description of the key.
- id String
- The unique ID of the key.
- key
Material StringExpire Time - The time when the key material will expire.
- key
Name String - The name of the key.
- key
Spec String - The algorithm used in the key.
- key
State String - The state of the key.
- key
Usage String - The usage of the key.
- last
Rotation StringTime - The last time the key was rotated.
- multi
Region Boolean - Whether it is the master key of the Multi-region type.
- multi
Region Property MapConfiguration - The configuration of Multi-region key.
- origin String
- The origin of the key.
- protection
Level String - The protection level of the key.
- rotation
State String - The rotation configuration of the key.
- schedule
Delete StringTime - The time when the key will be deleted.
- schedule
Rotation StringTime - The next time the key will be rotated.
- List<Property Map>
- A list of tags.
- trn String
- The name of the resource.
- update
Date Number - The date when the keyring was updated.
GetKeysKeyMultiRegionConfiguration
- Multi
Region stringKey Type - The type of the multi-region key.
- Primary
Key GetKeys Key Multi Region Configuration Primary Key - Trn and region id of the primary multi-region key.
- Replica
Keys List<GetKeys Key Multi Region Configuration Replica Key> - Trn and region id of replica multi-region keys.
- Multi
Region stringKey Type - The type of the multi-region key.
- Primary
Key GetKeys Key Multi Region Configuration Primary Key - Trn and region id of the primary multi-region key.
- Replica
Keys []GetKeys Key Multi Region Configuration Replica Key - Trn and region id of replica multi-region keys.
- multi
Region StringKey Type - The type of the multi-region key.
- primary
Key GetKeys Key Multi Region Configuration Primary Key - Trn and region id of the primary multi-region key.
- replica
Keys List<GetKeys Key Multi Region Configuration Replica Key> - Trn and region id of replica multi-region keys.
- multi
Region stringKey Type - The type of the multi-region key.
- primary
Key GetKeys Key Multi Region Configuration Primary Key - Trn and region id of the primary multi-region key.
- replica
Keys GetKeys Key Multi Region Configuration Replica Key[] - Trn and region id of replica multi-region keys.
- multi_
region_ strkey_ type - The type of the multi-region key.
- primary_
key GetKeys Key Multi Region Configuration Primary Key - Trn and region id of the primary multi-region key.
- replica_
keys Sequence[GetKeys Key Multi Region Configuration Replica Key] - Trn and region id of replica multi-region keys.
- multi
Region StringKey Type - The type of the multi-region key.
- primary
Key Property Map - Trn and region id of the primary multi-region key.
- replica
Keys List<Property Map> - Trn and region id of replica multi-region keys.
GetKeysKeyMultiRegionConfigurationPrimaryKey
GetKeysKeyMultiRegionConfigurationReplicaKey
GetKeysKeyTag
GetKeysTag
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.