Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.BigDataService.getBdsInstanceIdentityConfigurations
Explore with Pulumi AI
This data source provides the list of Bds Instance Identity Configurations in Oracle Cloud Infrastructure Big Data Service service.
Returns a list of all identity configurations associated with this Big Data Service cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsInstanceIdentityConfigurations = oci.BigDataService.getBdsInstanceIdentityConfigurations({
    bdsInstanceId: testBdsInstance.id,
    compartmentId: compartmentId,
    displayName: bdsInstanceIdentityConfigurationDisplayName,
    state: bdsInstanceIdentityConfigurationState,
});
import pulumi
import pulumi_oci as oci
test_bds_instance_identity_configurations = oci.BigDataService.get_bds_instance_identity_configurations(bds_instance_id=test_bds_instance["id"],
    compartment_id=compartment_id,
    display_name=bds_instance_identity_configuration_display_name,
    state=bds_instance_identity_configuration_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/bigdataservice"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := bigdataservice.GetBdsInstanceIdentityConfigurations(ctx, &bigdataservice.GetBdsInstanceIdentityConfigurationsArgs{
			BdsInstanceId: testBdsInstance.Id,
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(bdsInstanceIdentityConfigurationDisplayName),
			State:         pulumi.StringRef(bdsInstanceIdentityConfigurationState),
		}, nil)
		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 testBdsInstanceIdentityConfigurations = Oci.BigDataService.GetBdsInstanceIdentityConfigurations.Invoke(new()
    {
        BdsInstanceId = testBdsInstance.Id,
        CompartmentId = compartmentId,
        DisplayName = bdsInstanceIdentityConfigurationDisplayName,
        State = bdsInstanceIdentityConfigurationState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.BigDataService.BigDataServiceFunctions;
import com.pulumi.oci.BigDataService.inputs.GetBdsInstanceIdentityConfigurationsArgs;
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 testBdsInstanceIdentityConfigurations = BigDataServiceFunctions.getBdsInstanceIdentityConfigurations(GetBdsInstanceIdentityConfigurationsArgs.builder()
            .bdsInstanceId(testBdsInstance.id())
            .compartmentId(compartmentId)
            .displayName(bdsInstanceIdentityConfigurationDisplayName)
            .state(bdsInstanceIdentityConfigurationState)
            .build());
    }
}
variables:
  testBdsInstanceIdentityConfigurations:
    fn::invoke:
      function: oci:BigDataService:getBdsInstanceIdentityConfigurations
      arguments:
        bdsInstanceId: ${testBdsInstance.id}
        compartmentId: ${compartmentId}
        displayName: ${bdsInstanceIdentityConfigurationDisplayName}
        state: ${bdsInstanceIdentityConfigurationState}
Using getBdsInstanceIdentityConfigurations
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 getBdsInstanceIdentityConfigurations(args: GetBdsInstanceIdentityConfigurationsArgs, opts?: InvokeOptions): Promise<GetBdsInstanceIdentityConfigurationsResult>
function getBdsInstanceIdentityConfigurationsOutput(args: GetBdsInstanceIdentityConfigurationsOutputArgs, opts?: InvokeOptions): Output<GetBdsInstanceIdentityConfigurationsResult>def get_bds_instance_identity_configurations(bds_instance_id: Optional[str] = None,
                                             compartment_id: Optional[str] = None,
                                             display_name: Optional[str] = None,
                                             filters: Optional[Sequence[GetBdsInstanceIdentityConfigurationsFilter]] = None,
                                             state: Optional[str] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetBdsInstanceIdentityConfigurationsResult
def get_bds_instance_identity_configurations_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
                                             compartment_id: Optional[pulumi.Input[str]] = None,
                                             display_name: Optional[pulumi.Input[str]] = None,
                                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetBdsInstanceIdentityConfigurationsFilterArgs]]]] = None,
                                             state: Optional[pulumi.Input[str]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetBdsInstanceIdentityConfigurationsResult]func GetBdsInstanceIdentityConfigurations(ctx *Context, args *GetBdsInstanceIdentityConfigurationsArgs, opts ...InvokeOption) (*GetBdsInstanceIdentityConfigurationsResult, error)
func GetBdsInstanceIdentityConfigurationsOutput(ctx *Context, args *GetBdsInstanceIdentityConfigurationsOutputArgs, opts ...InvokeOption) GetBdsInstanceIdentityConfigurationsResultOutput> Note: This function is named GetBdsInstanceIdentityConfigurations in the Go SDK.
public static class GetBdsInstanceIdentityConfigurations 
{
    public static Task<GetBdsInstanceIdentityConfigurationsResult> InvokeAsync(GetBdsInstanceIdentityConfigurationsArgs args, InvokeOptions? opts = null)
    public static Output<GetBdsInstanceIdentityConfigurationsResult> Invoke(GetBdsInstanceIdentityConfigurationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetBdsInstanceIdentityConfigurationsResult> getBdsInstanceIdentityConfigurations(GetBdsInstanceIdentityConfigurationsArgs args, InvokeOptions options)
public static Output<GetBdsInstanceIdentityConfigurationsResult> getBdsInstanceIdentityConfigurations(GetBdsInstanceIdentityConfigurationsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:BigDataService/getBdsInstanceIdentityConfigurations:getBdsInstanceIdentityConfigurations
  arguments:
    # arguments dictionaryThe following arguments are supported:
- BdsInstance stringId 
- The OCID of the cluster.
- CompartmentId string
- The OCID of the compartment.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetBds Instance Identity Configurations Filter> 
- State string
- The state of the identity config
- BdsInstance stringId 
- The OCID of the cluster.
- CompartmentId string
- The OCID of the compartment.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetBds Instance Identity Configurations Filter 
- State string
- The state of the identity config
- bdsInstance StringId 
- The OCID of the cluster.
- compartmentId String
- The OCID of the compartment.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetBds Instance Identity Configurations Filter> 
- state String
- The state of the identity config
- bdsInstance stringId 
- The OCID of the cluster.
- compartmentId string
- The OCID of the compartment.
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetBds Instance Identity Configurations Filter[] 
- state string
- The state of the identity config
- bds_instance_ strid 
- The OCID of the cluster.
- compartment_id str
- The OCID of the compartment.
- display_name str
- A filter to return only resources that match the entire display name given.
- filters
Sequence[GetBds Instance Identity Configurations Filter] 
- state str
- The state of the identity config
- bdsInstance StringId 
- The OCID of the cluster.
- compartmentId String
- The OCID of the compartment.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- state String
- The state of the identity config
getBdsInstanceIdentityConfigurations Result
The following output properties are available:
- BdsInstance stringId 
- CompartmentId string
- Id string
- The provider-assigned unique ID for this managed resource.
- IdentityConfigurations List<GetBds Instance Identity Configurations Identity Configuration> 
- The list of identity_configurations.
- DisplayName string
- the display name of the identity configuration
- Filters
List<GetBds Instance Identity Configurations Filter> 
- State string
- Lifecycle state of the UPST config
- BdsInstance stringId 
- CompartmentId string
- Id string
- The provider-assigned unique ID for this managed resource.
- IdentityConfigurations []GetBds Instance Identity Configurations Identity Configuration 
- The list of identity_configurations.
- DisplayName string
- the display name of the identity configuration
- Filters
[]GetBds Instance Identity Configurations Filter 
- State string
- Lifecycle state of the UPST config
- bdsInstance StringId 
- compartmentId String
- id String
- The provider-assigned unique ID for this managed resource.
- identityConfigurations List<GetBds Instance Identity Configurations Identity Configuration> 
- The list of identity_configurations.
- displayName String
- the display name of the identity configuration
- filters
List<GetBds Instance Identity Configurations Filter> 
- state String
- Lifecycle state of the UPST config
- bdsInstance stringId 
- compartmentId string
- id string
- The provider-assigned unique ID for this managed resource.
- identityConfigurations GetBds Instance Identity Configurations Identity Configuration[] 
- The list of identity_configurations.
- displayName string
- the display name of the identity configuration
- filters
GetBds Instance Identity Configurations Filter[] 
- state string
- Lifecycle state of the UPST config
- bds_instance_ strid 
- compartment_id str
- id str
- The provider-assigned unique ID for this managed resource.
- identity_configurations Sequence[GetBds Instance Identity Configurations Identity Configuration] 
- The list of identity_configurations.
- display_name str
- the display name of the identity configuration
- filters
Sequence[GetBds Instance Identity Configurations Filter] 
- state str
- Lifecycle state of the UPST config
- bdsInstance StringId 
- compartmentId String
- id String
- The provider-assigned unique ID for this managed resource.
- identityConfigurations List<Property Map>
- The list of identity_configurations.
- displayName String
- the display name of the identity configuration
- filters List<Property Map>
- state String
- Lifecycle state of the UPST config
Supporting Types
GetBdsInstanceIdentityConfigurationsFilter     
GetBdsInstanceIdentityConfigurationsIdentityConfiguration      
- ActivateIam stringUser Sync Configuration Trigger 
- ActivateUpst stringConfiguration Trigger 
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- ConfidentialApplication stringId 
- identity domain confidential application ID for the identity config
- DisplayName string
- A filter to return only resources that match the entire display name given.
- IamUser List<GetSync Configuration Details Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration Detail> 
- IamUser List<GetSync Configurations Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration> 
- Information about the IAM user sync configuration.
- Id string
- The id of the identity config
- IdentityDomain stringId 
- Identity domain to use for identity config
- RefreshConfidential stringApplication Trigger 
- RefreshUpst stringToken Exchange Keytab Trigger 
- State string
- The state of the identity config
- TimeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- UpstConfiguration List<GetDetails Bds Instance Identity Configurations Identity Configuration Upst Configuration Detail> 
- UpstConfigurations List<GetBds Instance Identity Configurations Identity Configuration Upst Configuration> 
- Information about the UPST configuration.
- ActivateIam stringUser Sync Configuration Trigger 
- ActivateUpst stringConfiguration Trigger 
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- ConfidentialApplication stringId 
- identity domain confidential application ID for the identity config
- DisplayName string
- A filter to return only resources that match the entire display name given.
- IamUser []GetSync Configuration Details Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration Detail 
- IamUser []GetSync Configurations Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration 
- Information about the IAM user sync configuration.
- Id string
- The id of the identity config
- IdentityDomain stringId 
- Identity domain to use for identity config
- RefreshConfidential stringApplication Trigger 
- RefreshUpst stringToken Exchange Keytab Trigger 
- State string
- The state of the identity config
- TimeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- UpstConfiguration []GetDetails Bds Instance Identity Configurations Identity Configuration Upst Configuration Detail 
- UpstConfigurations []GetBds Instance Identity Configurations Identity Configuration Upst Configuration 
- Information about the UPST configuration.
- activateIam StringUser Sync Configuration Trigger 
- activateUpst StringConfiguration Trigger 
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- confidentialApplication StringId 
- identity domain confidential application ID for the identity config
- displayName String
- A filter to return only resources that match the entire display name given.
- iamUser List<GetSync Configuration Details Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration Detail> 
- iamUser List<GetSync Configurations Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration> 
- Information about the IAM user sync configuration.
- id String
- The id of the identity config
- identityDomain StringId 
- Identity domain to use for identity config
- refreshConfidential StringApplication Trigger 
- refreshUpst StringToken Exchange Keytab Trigger 
- state String
- The state of the identity config
- timeCreated String
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- upstConfiguration List<GetDetails Bds Instance Identity Configurations Identity Configuration Upst Configuration Detail> 
- upstConfigurations List<GetBds Instance Identity Configurations Identity Configuration Upst Configuration> 
- Information about the UPST configuration.
- activateIam stringUser Sync Configuration Trigger 
- activateUpst stringConfiguration Trigger 
- bdsInstance stringId 
- The OCID of the cluster.
- clusterAdmin stringPassword 
- confidentialApplication stringId 
- identity domain confidential application ID for the identity config
- displayName string
- A filter to return only resources that match the entire display name given.
- iamUser GetSync Configuration Details Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration Detail[] 
- iamUser GetSync Configurations Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration[] 
- Information about the IAM user sync configuration.
- id string
- The id of the identity config
- identityDomain stringId 
- Identity domain to use for identity config
- refreshConfidential stringApplication Trigger 
- refreshUpst stringToken Exchange Keytab Trigger 
- state string
- The state of the identity config
- timeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- upstConfiguration GetDetails Bds Instance Identity Configurations Identity Configuration Upst Configuration Detail[] 
- upstConfigurations GetBds Instance Identity Configurations Identity Configuration Upst Configuration[] 
- Information about the UPST configuration.
- activate_iam_ struser_ sync_ configuration_ trigger 
- activate_upst_ strconfiguration_ trigger 
- bds_instance_ strid 
- The OCID of the cluster.
- cluster_admin_ strpassword 
- confidential_application_ strid 
- identity domain confidential application ID for the identity config
- display_name str
- A filter to return only resources that match the entire display name given.
- iam_user_ Sequence[Getsync_ configuration_ details Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration Detail] 
- iam_user_ Sequence[Getsync_ configurations Bds Instance Identity Configurations Identity Configuration Iam User Sync Configuration] 
- Information about the IAM user sync configuration.
- id str
- The id of the identity config
- identity_domain_ strid 
- Identity domain to use for identity config
- refresh_confidential_ strapplication_ trigger 
- refresh_upst_ strtoken_ exchange_ keytab_ trigger 
- state str
- The state of the identity config
- time_created str
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- time_updated str
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- upst_configuration_ Sequence[Getdetails Bds Instance Identity Configurations Identity Configuration Upst Configuration Detail] 
- upst_configurations Sequence[GetBds Instance Identity Configurations Identity Configuration Upst Configuration] 
- Information about the UPST configuration.
- activateIam StringUser Sync Configuration Trigger 
- activateUpst StringConfiguration Trigger 
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- confidentialApplication StringId 
- identity domain confidential application ID for the identity config
- displayName String
- A filter to return only resources that match the entire display name given.
- iamUser List<Property Map>Sync Configuration Details 
- iamUser List<Property Map>Sync Configurations 
- Information about the IAM user sync configuration.
- id String
- The id of the identity config
- identityDomain StringId 
- Identity domain to use for identity config
- refreshConfidential StringApplication Trigger 
- refreshUpst StringToken Exchange Keytab Trigger 
- state String
- The state of the identity config
- timeCreated String
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- upstConfiguration List<Property Map>Details 
- upstConfigurations List<Property Map>
- Information about the UPST configuration.
GetBdsInstanceIdentityConfigurationsIdentityConfigurationIamUserSyncConfiguration          
- IsPosix boolAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- State string
- The state of the identity config
- TimeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- IsPosix boolAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- State string
- The state of the identity config
- TimeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- isPosix BooleanAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- state String
- The state of the identity config
- timeCreated String
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- isPosix booleanAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- state string
- The state of the identity config
- timeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- is_posix_ boolattributes_ addition_ required 
- whether to append POSIX attributes to IAM users
- state str
- The state of the identity config
- time_created str
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- time_updated str
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- isPosix BooleanAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- state String
- The state of the identity config
- timeCreated String
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
GetBdsInstanceIdentityConfigurationsIdentityConfigurationIamUserSyncConfigurationDetail           
- IsPosix boolAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- IsPosix boolAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- isPosix BooleanAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- isPosix booleanAttributes Addition Required 
- whether to append POSIX attributes to IAM users
- is_posix_ boolattributes_ addition_ required 
- whether to append POSIX attributes to IAM users
- isPosix BooleanAttributes Addition Required 
- whether to append POSIX attributes to IAM users
GetBdsInstanceIdentityConfigurationsIdentityConfigurationUpstConfiguration        
- KeytabContent string
- The kerberos keytab content used for creating identity propagation trust config, in base64 format
- MasterEncryption stringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- SecretId string
- Secret ID for token exchange keytab
- State string
- The state of the identity config
- TimeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- TimeToken stringExchange Keytab Last Refreshed 
- Time when the keytab for token exchange principal is last refreshed, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- TokenExchange stringPrincipal Name 
- Token exchange kerberos Principal name in cluster
- VaultId string
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- KeytabContent string
- The kerberos keytab content used for creating identity propagation trust config, in base64 format
- MasterEncryption stringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- SecretId string
- Secret ID for token exchange keytab
- State string
- The state of the identity config
- TimeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- TimeToken stringExchange Keytab Last Refreshed 
- Time when the keytab for token exchange principal is last refreshed, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- TokenExchange stringPrincipal Name 
- Token exchange kerberos Principal name in cluster
- VaultId string
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- keytabContent String
- The kerberos keytab content used for creating identity propagation trust config, in base64 format
- masterEncryption StringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- secretId String
- Secret ID for token exchange keytab
- state String
- The state of the identity config
- timeCreated String
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeToken StringExchange Keytab Last Refreshed 
- Time when the keytab for token exchange principal is last refreshed, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- tokenExchange StringPrincipal Name 
- Token exchange kerberos Principal name in cluster
- vaultId String
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- keytabContent string
- The kerberos keytab content used for creating identity propagation trust config, in base64 format
- masterEncryption stringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- secretId string
- Secret ID for token exchange keytab
- state string
- The state of the identity config
- timeCreated string
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeToken stringExchange Keytab Last Refreshed 
- Time when the keytab for token exchange principal is last refreshed, shown as an RFC 3339 formatted datetime string.
- timeUpdated string
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- tokenExchange stringPrincipal Name 
- Token exchange kerberos Principal name in cluster
- vaultId string
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- keytab_content str
- The kerberos keytab content used for creating identity propagation trust config, in base64 format
- master_encryption_ strkey_ id 
- Master Encryption key used for encrypting token exchange keytab.
- secret_id str
- Secret ID for token exchange keytab
- state str
- The state of the identity config
- time_created str
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- time_token_ strexchange_ keytab_ last_ refreshed 
- Time when the keytab for token exchange principal is last refreshed, shown as an RFC 3339 formatted datetime string.
- time_updated str
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- token_exchange_ strprincipal_ name 
- Token exchange kerberos Principal name in cluster
- vault_id str
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- keytabContent String
- The kerberos keytab content used for creating identity propagation trust config, in base64 format
- masterEncryption StringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- secretId String
- Secret ID for token exchange keytab
- state String
- The state of the identity config
- timeCreated String
- Time when this UPST config was created, shown as an RFC 3339 formatted datetime string.
- timeToken StringExchange Keytab Last Refreshed 
- Time when the keytab for token exchange principal is last refreshed, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- Time when this UPST config was updated, shown as an RFC 3339 formatted datetime string.
- tokenExchange StringPrincipal Name 
- Token exchange kerberos Principal name in cluster
- vaultId String
- The instance OCID of the node, which is the resource from which the node backup was acquired.
GetBdsInstanceIdentityConfigurationsIdentityConfigurationUpstConfigurationDetail         
- MasterEncryption stringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- VaultId string
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- MasterEncryption stringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- VaultId string
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- masterEncryption StringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- vaultId String
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- masterEncryption stringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- vaultId string
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- master_encryption_ strkey_ id 
- Master Encryption key used for encrypting token exchange keytab.
- vault_id str
- The instance OCID of the node, which is the resource from which the node backup was acquired.
- masterEncryption StringKey Id 
- Master Encryption key used for encrypting token exchange keytab.
- vaultId String
- The instance OCID of the node, which is the resource from which the node backup was acquired.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.