oci.Database.KeyStore
Explore with Pulumi AI
This resource provides the Key Store resource in Oracle Cloud Infrastructure Database service.
Creates a Key Store.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testKeyStore = new oci.database.KeyStore("test_key_store", {
compartmentId: compartmentId,
displayName: keyStoreDisplayName,
typeDetails: {
adminUsername: keyStoreTypeDetailsAdminUsername,
connectionIps: keyStoreTypeDetailsConnectionIps,
secretId: testSecret.id,
type: keyStoreTypeDetailsType,
vaultId: testVault.id,
},
definedTags: keyStoreDefinedTags,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_key_store = oci.database.KeyStore("test_key_store",
compartment_id=compartment_id,
display_name=key_store_display_name,
type_details={
"admin_username": key_store_type_details_admin_username,
"connection_ips": key_store_type_details_connection_ips,
"secret_id": test_secret["id"],
"type": key_store_type_details_type,
"vault_id": test_vault["id"],
},
defined_tags=key_store_defined_tags,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Database.NewKeyStore(ctx, "test_key_store", &Database.KeyStoreArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(keyStoreDisplayName),
TypeDetails: &database.KeyStoreTypeDetailsArgs{
AdminUsername: pulumi.Any(keyStoreTypeDetailsAdminUsername),
ConnectionIps: pulumi.Any(keyStoreTypeDetailsConnectionIps),
SecretId: pulumi.Any(testSecret.Id),
Type: pulumi.Any(keyStoreTypeDetailsType),
VaultId: pulumi.Any(testVault.Id),
},
DefinedTags: pulumi.Any(keyStoreDefinedTags),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testKeyStore = new Oci.Database.KeyStore("test_key_store", new()
{
CompartmentId = compartmentId,
DisplayName = keyStoreDisplayName,
TypeDetails = new Oci.Database.Inputs.KeyStoreTypeDetailsArgs
{
AdminUsername = keyStoreTypeDetailsAdminUsername,
ConnectionIps = keyStoreTypeDetailsConnectionIps,
SecretId = testSecret.Id,
Type = keyStoreTypeDetailsType,
VaultId = testVault.Id,
},
DefinedTags = keyStoreDefinedTags,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.KeyStore;
import com.pulumi.oci.Database.KeyStoreArgs;
import com.pulumi.oci.Database.inputs.KeyStoreTypeDetailsArgs;
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) {
var testKeyStore = new KeyStore("testKeyStore", KeyStoreArgs.builder()
.compartmentId(compartmentId)
.displayName(keyStoreDisplayName)
.typeDetails(KeyStoreTypeDetailsArgs.builder()
.adminUsername(keyStoreTypeDetailsAdminUsername)
.connectionIps(keyStoreTypeDetailsConnectionIps)
.secretId(testSecret.id())
.type(keyStoreTypeDetailsType)
.vaultId(testVault.id())
.build())
.definedTags(keyStoreDefinedTags)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testKeyStore:
type: oci:Database:KeyStore
name: test_key_store
properties:
compartmentId: ${compartmentId}
displayName: ${keyStoreDisplayName}
typeDetails:
adminUsername: ${keyStoreTypeDetailsAdminUsername}
connectionIps: ${keyStoreTypeDetailsConnectionIps}
secretId: ${testSecret.id}
type: ${keyStoreTypeDetailsType}
vaultId: ${testVault.id}
definedTags: ${keyStoreDefinedTags}
freeformTags:
Department: Finance
Create KeyStore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KeyStore(name: string, args: KeyStoreArgs, opts?: CustomResourceOptions);
@overload
def KeyStore(resource_name: str,
args: KeyStoreArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KeyStore(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
type_details: Optional[_database.KeyStoreTypeDetailsArgs] = None,
confirm_details_trigger: Optional[int] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None)
func NewKeyStore(ctx *Context, name string, args KeyStoreArgs, opts ...ResourceOption) (*KeyStore, error)
public KeyStore(string name, KeyStoreArgs args, CustomResourceOptions? opts = null)
public KeyStore(String name, KeyStoreArgs args)
public KeyStore(String name, KeyStoreArgs args, CustomResourceOptions options)
type: oci:Database:KeyStore
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args KeyStoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args KeyStoreArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args KeyStoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KeyStoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KeyStoreArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var keyStoreResource = new Oci.Database.KeyStore("keyStoreResource", new()
{
CompartmentId = "string",
DisplayName = "string",
TypeDetails = new Oci.Database.Inputs.KeyStoreTypeDetailsArgs
{
AdminUsername = "string",
ConnectionIps = new[]
{
"string",
},
SecretId = "string",
Type = "string",
VaultId = "string",
},
ConfirmDetailsTrigger = 0,
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
});
example, err := Database.NewKeyStore(ctx, "keyStoreResource", &Database.KeyStoreArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
TypeDetails: &database.KeyStoreTypeDetailsArgs{
AdminUsername: pulumi.String("string"),
ConnectionIps: pulumi.StringArray{
pulumi.String("string"),
},
SecretId: pulumi.String("string"),
Type: pulumi.String("string"),
VaultId: pulumi.String("string"),
},
ConfirmDetailsTrigger: pulumi.Int(0),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var keyStoreResource = new KeyStore("keyStoreResource", KeyStoreArgs.builder()
.compartmentId("string")
.displayName("string")
.typeDetails(KeyStoreTypeDetailsArgs.builder()
.adminUsername("string")
.connectionIps("string")
.secretId("string")
.type("string")
.vaultId("string")
.build())
.confirmDetailsTrigger(0)
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.build());
key_store_resource = oci.database.KeyStore("keyStoreResource",
compartment_id="string",
display_name="string",
type_details={
"admin_username": "string",
"connection_ips": ["string"],
"secret_id": "string",
"type": "string",
"vault_id": "string",
},
confirm_details_trigger=0,
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
})
const keyStoreResource = new oci.database.KeyStore("keyStoreResource", {
compartmentId: "string",
displayName: "string",
typeDetails: {
adminUsername: "string",
connectionIps: ["string"],
secretId: "string",
type: "string",
vaultId: "string",
},
confirmDetailsTrigger: 0,
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
});
type: oci:Database:KeyStore
properties:
compartmentId: string
confirmDetailsTrigger: 0
definedTags:
string: string
displayName: string
freeformTags:
string: string
typeDetails:
adminUsername: string
connectionIps:
- string
secretId: string
type: string
vaultId: string
KeyStore Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The KeyStore resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - The user-friendly name for the key store. The name does not need to be unique.
- Type
Details KeyStore Type Details - (Updatable) Key store type details.
- Confirm
Details intTrigger - Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - The user-friendly name for the key store. The name does not need to be unique.
- Type
Details KeyStore Type Details Args - (Updatable) Key store type details.
- Confirm
Details intTrigger - map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - The user-friendly name for the key store. The name does not need to be unique.
- type
Details KeyStore Type Details - (Updatable) Key store type details.
- confirm
Details IntegerTrigger - Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - The user-friendly name for the key store. The name does not need to be unique.
- type
Details KeyStore Type Details - (Updatable) Key store type details.
- confirm
Details numberTrigger - {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment_
id str - (Updatable) The OCID of the compartment.
- display_
name str - The user-friendly name for the key store. The name does not need to be unique.
- type_
details database.Key Store Type Details Args - (Updatable) Key store type details.
- confirm_
details_ inttrigger - Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - The user-friendly name for the key store. The name does not need to be unique.
- type
Details Property Map - (Updatable) Key store type details.
- confirm
Details NumberTrigger - Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
Outputs
All input properties are implicitly available as output properties. Additionally, the KeyStore resource produces the following output properties:
- Associated
Databases List<KeyStore Associated Database> - List of databases associated with the key store.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- Time
Created string - The date and time that the key store was created.
- Associated
Databases []KeyStore Associated Database - List of databases associated with the key store.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- Time
Created string - The date and time that the key store was created.
- associated
Databases List<KeyStore Associated> - List of databases associated with the key store.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- time
Created String - The date and time that the key store was created.
- associated
Databases KeyStore Associated Database[] - List of databases associated with the key store.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Additional information about the current lifecycle state.
- state string
- The current state of the key store.
- time
Created string - The date and time that the key store was created.
- associated_
databases Sequence[database.Key Store Associated Database] - List of databases associated with the key store.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - Additional information about the current lifecycle state.
- state str
- The current state of the key store.
- time_
created str - The date and time that the key store was created.
- associated
Databases List<Property Map> - List of databases associated with the key store.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- time
Created String - The date and time that the key store was created.
Look up Existing KeyStore Resource
Get an existing KeyStore resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: KeyStoreState, opts?: CustomResourceOptions): KeyStore
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
associated_databases: Optional[Sequence[_database.KeyStoreAssociatedDatabaseArgs]] = None,
compartment_id: Optional[str] = None,
confirm_details_trigger: Optional[int] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
lifecycle_details: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
type_details: Optional[_database.KeyStoreTypeDetailsArgs] = None) -> KeyStore
func GetKeyStore(ctx *Context, name string, id IDInput, state *KeyStoreState, opts ...ResourceOption) (*KeyStore, error)
public static KeyStore Get(string name, Input<string> id, KeyStoreState? state, CustomResourceOptions? opts = null)
public static KeyStore get(String name, Output<String> id, KeyStoreState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Associated
Databases List<KeyStore Associated Database> - List of databases associated with the key store.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Confirm
Details intTrigger - Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the key store. The name does not need to be unique.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Lifecycle
Details string - Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- Time
Created string - The date and time that the key store was created.
- Type
Details KeyStore Type Details - (Updatable) Key store type details.
- Associated
Databases []KeyStore Associated Database Args - List of databases associated with the key store.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Confirm
Details intTrigger - map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the key store. The name does not need to be unique.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Lifecycle
Details string - Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- Time
Created string - The date and time that the key store was created.
- Type
Details KeyStore Type Details Args - (Updatable) Key store type details.
- associated
Databases List<KeyStore Associated> - List of databases associated with the key store.
- compartment
Id String - (Updatable) The OCID of the compartment.
- confirm
Details IntegerTrigger - Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the key store. The name does not need to be unique.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle
Details String - Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- time
Created String - The date and time that the key store was created.
- type
Details KeyStore Type Details - (Updatable) Key store type details.
- associated
Databases KeyStore Associated Database[] - List of databases associated with the key store.
- compartment
Id string - (Updatable) The OCID of the compartment.
- confirm
Details numberTrigger - {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - The user-friendly name for the key store. The name does not need to be unique.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle
Details string - Additional information about the current lifecycle state.
- state string
- The current state of the key store.
- time
Created string - The date and time that the key store was created.
- type
Details KeyStore Type Details - (Updatable) Key store type details.
- associated_
databases Sequence[database.Key Store Associated Database Args] - List of databases associated with the key store.
- compartment_
id str - (Updatable) The OCID of the compartment.
- confirm_
details_ inttrigger - Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_
name str - The user-friendly name for the key store. The name does not need to be unique.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle_
details str - Additional information about the current lifecycle state.
- state str
- The current state of the key store.
- time_
created str - The date and time that the key store was created.
- type_
details database.Key Store Type Details Args - (Updatable) Key store type details.
- associated
Databases List<Property Map> - List of databases associated with the key store.
- compartment
Id String - (Updatable) The OCID of the compartment.
- confirm
Details NumberTrigger - Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the key store. The name does not need to be unique.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- lifecycle
Details String - Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- time
Created String - The date and time that the key store was created.
- type
Details Property Map - (Updatable) Key store type details.
Supporting Types
KeyStoreAssociatedDatabase, KeyStoreAssociatedDatabaseArgs
KeyStoreTypeDetails, KeyStoreTypeDetailsArgs
- Admin
Username string - (Updatable) The administrator username to connect to Oracle Key Vault
- Connection
Ips List<string> - (Updatable) The list of Oracle Key Vault connection IP addresses.
- Secret
Id string - (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- Type string
- (Updatable) The type of key store.
- Vault
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretId
are required for Customer Managed Keys.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Admin
Username string - (Updatable) The administrator username to connect to Oracle Key Vault
- Connection
Ips []string - (Updatable) The list of Oracle Key Vault connection IP addresses.
- Secret
Id string - (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- Type string
- (Updatable) The type of key store.
- Vault
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretId
are required for Customer Managed Keys.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- admin
Username String - (Updatable) The administrator username to connect to Oracle Key Vault
- connection
Ips List<String> - (Updatable) The list of Oracle Key Vault connection IP addresses.
- secret
Id String - (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- type String
- (Updatable) The type of key store.
- vault
Id String (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretId
are required for Customer Managed Keys.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- admin
Username string - (Updatable) The administrator username to connect to Oracle Key Vault
- connection
Ips string[] - (Updatable) The list of Oracle Key Vault connection IP addresses.
- secret
Id string - (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- type string
- (Updatable) The type of key store.
- vault
Id string (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretId
are required for Customer Managed Keys.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- admin_
username str - (Updatable) The administrator username to connect to Oracle Key Vault
- connection_
ips Sequence[str] - (Updatable) The list of Oracle Key Vault connection IP addresses.
- secret_
id str - (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- type str
- (Updatable) The type of key store.
- vault_
id str (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretId
are required for Customer Managed Keys.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- admin
Username String - (Updatable) The administrator username to connect to Oracle Key Vault
- connection
Ips List<String> - (Updatable) The list of Oracle Key Vault connection IP addresses.
- secret
Id String - (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- type String
- (Updatable) The type of key store.
- vault
Id String (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretId
are required for Customer Managed Keys.** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
KeyStores can be imported using the id
, e.g.
$ pulumi import oci:Database/keyStore:KeyStore test_key_store "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.