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[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:
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DisplayName string
- The user-friendly name for the key store. The name does not need to be unique.
- TypeDetails KeyStore Type Details 
- (Updatable) Key store type details.
- ConfirmDetails 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"}
- CompartmentId string
- (Updatable) The OCID of the compartment.
- DisplayName string
- The user-friendly name for the key store. The name does not need to be unique.
- TypeDetails KeyStore Type Details Args 
- (Updatable) Key store type details.
- ConfirmDetails 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"}
- compartmentId String
- (Updatable) The OCID of the compartment.
- displayName String
- The user-friendly name for the key store. The name does not need to be unique.
- typeDetails KeyStore Type Details 
- (Updatable) Key store type details.
- confirmDetails 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"}
- compartmentId string
- (Updatable) The OCID of the compartment.
- displayName string
- The user-friendly name for the key store. The name does not need to be unique.
- typeDetails KeyStore Type Details 
- (Updatable) Key store type details.
- confirmDetails 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 KeyStore 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"}
- compartmentId String
- (Updatable) The OCID of the compartment.
- displayName String
- The user-friendly name for the key store. The name does not need to be unique.
- typeDetails Property Map
- (Updatable) Key store type details.
- confirmDetails 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:
- AssociatedDatabases List<KeyStore Associated Database> 
- List of databases associated with the key store.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- TimeCreated string
- The date and time that the key store was created.
- AssociatedDatabases []KeyStore Associated Database 
- List of databases associated with the key store.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- TimeCreated string
- The date and time that the key store was created.
- associatedDatabases List<KeyStore Associated> 
- List of databases associated with the key store.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- timeCreated String
- The date and time that the key store was created.
- associatedDatabases KeyStore Associated Database[] 
- List of databases associated with the key store.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- state string
- The current state of the key store.
- timeCreated string
- The date and time that the key store was created.
- associated_databases Sequence[KeyStore 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.
- associatedDatabases List<Property Map>
- List of databases associated with the key store.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- timeCreated 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[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[KeyStoreTypeDetailsArgs] = None) -> KeyStorefunc 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)resources:  _:    type: oci:Database:KeyStore    get:      id: ${id}- 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.
- AssociatedDatabases List<KeyStore Associated Database> 
- List of databases associated with the key store.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- ConfirmDetails 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.
- DisplayName 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"}
- LifecycleDetails string
- Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- TimeCreated string
- The date and time that the key store was created.
- TypeDetails KeyStore Type Details 
- (Updatable) Key store type details.
- AssociatedDatabases []KeyStore Associated Database Args 
- List of databases associated with the key store.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- ConfirmDetails 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.
- DisplayName 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"}
- LifecycleDetails string
- Additional information about the current lifecycle state.
- State string
- The current state of the key store.
- TimeCreated string
- The date and time that the key store was created.
- TypeDetails KeyStore Type Details Args 
- (Updatable) Key store type details.
- associatedDatabases List<KeyStore Associated> 
- List of databases associated with the key store.
- compartmentId String
- (Updatable) The OCID of the compartment.
- confirmDetails 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.
- displayName 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"}
- lifecycleDetails String
- Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- timeCreated String
- The date and time that the key store was created.
- typeDetails KeyStore Type Details 
- (Updatable) Key store type details.
- associatedDatabases KeyStore Associated Database[] 
- List of databases associated with the key store.
- compartmentId string
- (Updatable) The OCID of the compartment.
- confirmDetails 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.
- displayName 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"}
- lifecycleDetails string
- Additional information about the current lifecycle state.
- state string
- The current state of the key store.
- timeCreated string
- The date and time that the key store was created.
- typeDetails KeyStore Type Details 
- (Updatable) Key store type details.
- associated_databases Sequence[KeyStore 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 KeyStore Type Details Args 
- (Updatable) Key store type details.
- associatedDatabases List<Property Map>
- List of databases associated with the key store.
- compartmentId String
- (Updatable) The OCID of the compartment.
- confirmDetails NumberTrigger 
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName 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"}
- lifecycleDetails String
- Additional information about the current lifecycle state.
- state String
- The current state of the key store.
- timeCreated String
- The date and time that the key store was created.
- typeDetails Property Map
- (Updatable) Key store type details.
Supporting Types
KeyStoreAssociatedDatabase, KeyStoreAssociatedDatabaseArgs        
KeyStoreTypeDetails, KeyStoreTypeDetailsArgs        
- AdminUsername string
- (Updatable) The administrator username to connect to Oracle Key Vault
- ConnectionIps List<string>
- (Updatable) The list of Oracle Key Vault connection IP addresses.
- SecretId string
- (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- Type string
- (Updatable) The type of key store.
- VaultId string
- (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and - secretIdare 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 
- AdminUsername string
- (Updatable) The administrator username to connect to Oracle Key Vault
- ConnectionIps []string
- (Updatable) The list of Oracle Key Vault connection IP addresses.
- SecretId string
- (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- Type string
- (Updatable) The type of key store.
- VaultId string
- (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and - secretIdare 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 
- adminUsername String
- (Updatable) The administrator username to connect to Oracle Key Vault
- connectionIps List<String>
- (Updatable) The list of Oracle Key Vault connection IP addresses.
- secretId String
- (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- type String
- (Updatable) The type of key store.
- vaultId String
- (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and - secretIdare 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 
- adminUsername string
- (Updatable) The administrator username to connect to Oracle Key Vault
- connectionIps string[]
- (Updatable) The list of Oracle Key Vault connection IP addresses.
- secretId string
- (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- type string
- (Updatable) The type of key store.
- vaultId string
- (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and - secretIdare 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 - secretIdare 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 
- adminUsername String
- (Updatable) The administrator username to connect to Oracle Key Vault
- connectionIps List<String>
- (Updatable) The list of Oracle Key Vault connection IP addresses.
- secretId String
- (Updatable) The OCID of the Oracle Cloud Infrastructure secret.
- type String
- (Updatable) The type of key store.
- vaultId String
- (Updatable) The OCID of the Oracle Cloud Infrastructure vault. This parameter and - secretIdare 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 ociTerraform Provider.