1. Packages
  2. Azure Native
  3. API Docs
  4. secretsynccontroller
  5. AzureKeyVaultSecretProviderClass
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

azure-native.secretsynccontroller.AzureKeyVaultSecretProviderClass

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

    The AzureKeyVaultSecretProviderClass resource. Azure REST API version: 2024-08-21-preview.

    Example Usage

    AzureKeyVaultSecretProviderClasses_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var azureKeyVaultSecretProviderClass = new AzureNative.SecretSyncController.AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClass", new()
        {
            AzureKeyVaultSecretProviderClassName = "akvspc-ssc-example",
            ClientId = "00000000-0000-0000-0000-000000000000",
            ExtendedLocation = new AzureNative.SecretSyncController.Inputs.AzureResourceManagerCommonTypesExtendedLocationArgs
            {
                Name = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ssc-example/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location",
                Type = AzureNative.SecretSyncController.ExtendedLocationType.CustomLocation,
            },
            KeyvaultName = "example-ssc-key-vault",
            Location = "eastus",
            Objects = @"array: |
      - |
        objectName: my-secret-object
        objectType: secret
        objectVersionHistory: 1",
            ResourceGroupName = "rg-ssc-example",
            Tags = 
            {
                { "example-tag", "example-tag-value" },
            },
            TenantId = "00000000-0000-0000-0000-000000000000",
        });
    
    });
    
    package main
    
    import (
    	secretsynccontroller "github.com/pulumi/pulumi-azure-native-sdk/secretsynccontroller/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := secretsynccontroller.NewAzureKeyVaultSecretProviderClass(ctx, "azureKeyVaultSecretProviderClass", &secretsynccontroller.AzureKeyVaultSecretProviderClassArgs{
    			AzureKeyVaultSecretProviderClassName: pulumi.String("akvspc-ssc-example"),
    			ClientId:                             pulumi.String("00000000-0000-0000-0000-000000000000"),
    			ExtendedLocation: &secretsynccontroller.AzureResourceManagerCommonTypesExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ssc-example/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location"),
    				Type: pulumi.String(secretsynccontroller.ExtendedLocationTypeCustomLocation),
    			},
    			KeyvaultName:      pulumi.String("example-ssc-key-vault"),
    			Location:          pulumi.String("eastus"),
    			Objects:           pulumi.String("array: |\n  - |\n    objectName: my-secret-object\n    objectType: secret\n    objectVersionHistory: 1"),
    			ResourceGroupName: pulumi.String("rg-ssc-example"),
    			Tags: pulumi.StringMap{
    				"example-tag": pulumi.String("example-tag-value"),
    			},
    			TenantId: pulumi.String("00000000-0000-0000-0000-000000000000"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.secretsynccontroller.AzureKeyVaultSecretProviderClass;
    import com.pulumi.azurenative.secretsynccontroller.AzureKeyVaultSecretProviderClassArgs;
    import com.pulumi.azurenative.secretsynccontroller.inputs.AzureResourceManagerCommonTypesExtendedLocationArgs;
    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 azureKeyVaultSecretProviderClass = new AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClass", AzureKeyVaultSecretProviderClassArgs.builder()
                .azureKeyVaultSecretProviderClassName("akvspc-ssc-example")
                .clientId("00000000-0000-0000-0000-000000000000")
                .extendedLocation(AzureResourceManagerCommonTypesExtendedLocationArgs.builder()
                    .name("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ssc-example/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location")
                    .type("CustomLocation")
                    .build())
                .keyvaultName("example-ssc-key-vault")
                .location("eastus")
                .objects("""
    array: |
      - |
        objectName: my-secret-object
        objectType: secret
        objectVersionHistory: 1            """)
                .resourceGroupName("rg-ssc-example")
                .tags(Map.of("example-tag", "example-tag-value"))
                .tenantId("00000000-0000-0000-0000-000000000000")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    azure_key_vault_secret_provider_class = azure_native.secretsynccontroller.AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClass",
        azure_key_vault_secret_provider_class_name="akvspc-ssc-example",
        client_id="00000000-0000-0000-0000-000000000000",
        extended_location={
            "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ssc-example/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location",
            "type": azure_native.secretsynccontroller.ExtendedLocationType.CUSTOM_LOCATION,
        },
        keyvault_name="example-ssc-key-vault",
        location="eastus",
        objects="""array: |
      - |
        objectName: my-secret-object
        objectType: secret
        objectVersionHistory: 1""",
        resource_group_name="rg-ssc-example",
        tags={
            "example-tag": "example-tag-value",
        },
        tenant_id="00000000-0000-0000-0000-000000000000")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const azureKeyVaultSecretProviderClass = new azure_native.secretsynccontroller.AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClass", {
        azureKeyVaultSecretProviderClassName: "akvspc-ssc-example",
        clientId: "00000000-0000-0000-0000-000000000000",
        extendedLocation: {
            name: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ssc-example/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location",
            type: azure_native.secretsynccontroller.ExtendedLocationType.CustomLocation,
        },
        keyvaultName: "example-ssc-key-vault",
        location: "eastus",
        objects: `array: |
      - |
        objectName: my-secret-object
        objectType: secret
        objectVersionHistory: 1`,
        resourceGroupName: "rg-ssc-example",
        tags: {
            "example-tag": "example-tag-value",
        },
        tenantId: "00000000-0000-0000-0000-000000000000",
    });
    
    resources:
      azureKeyVaultSecretProviderClass:
        type: azure-native:secretsynccontroller:AzureKeyVaultSecretProviderClass
        properties:
          azureKeyVaultSecretProviderClassName: akvspc-ssc-example
          clientId: 00000000-0000-0000-0000-000000000000
          extendedLocation:
            name: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ssc-example/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location
            type: CustomLocation
          keyvaultName: example-ssc-key-vault
          location: eastus
          objects: |-
            array: |
              - |
                objectName: my-secret-object
                objectType: secret
                objectVersionHistory: 1        
          resourceGroupName: rg-ssc-example
          tags:
            example-tag: example-tag-value
          tenantId: 00000000-0000-0000-0000-000000000000
    

    Create AzureKeyVaultSecretProviderClass Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AzureKeyVaultSecretProviderClass(name: string, args: AzureKeyVaultSecretProviderClassArgs, opts?: CustomResourceOptions);
    @overload
    def AzureKeyVaultSecretProviderClass(resource_name: str,
                                         args: AzureKeyVaultSecretProviderClassArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AzureKeyVaultSecretProviderClass(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         client_id: Optional[str] = None,
                                         keyvault_name: Optional[str] = None,
                                         resource_group_name: Optional[str] = None,
                                         tenant_id: Optional[str] = None,
                                         azure_key_vault_secret_provider_class_name: Optional[str] = None,
                                         extended_location: Optional[AzureResourceManagerCommonTypesExtendedLocationArgs] = None,
                                         location: Optional[str] = None,
                                         objects: Optional[str] = None,
                                         tags: Optional[Mapping[str, str]] = None)
    func NewAzureKeyVaultSecretProviderClass(ctx *Context, name string, args AzureKeyVaultSecretProviderClassArgs, opts ...ResourceOption) (*AzureKeyVaultSecretProviderClass, error)
    public AzureKeyVaultSecretProviderClass(string name, AzureKeyVaultSecretProviderClassArgs args, CustomResourceOptions? opts = null)
    public AzureKeyVaultSecretProviderClass(String name, AzureKeyVaultSecretProviderClassArgs args)
    public AzureKeyVaultSecretProviderClass(String name, AzureKeyVaultSecretProviderClassArgs args, CustomResourceOptions options)
    
    type: azure-native:secretsynccontroller:AzureKeyVaultSecretProviderClass
    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 AzureKeyVaultSecretProviderClassArgs
    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 AzureKeyVaultSecretProviderClassArgs
    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 AzureKeyVaultSecretProviderClassArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AzureKeyVaultSecretProviderClassArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AzureKeyVaultSecretProviderClassArgs
    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 azureKeyVaultSecretProviderClassResource = new AzureNative.SecretSyncController.AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClassResource", new()
    {
        ClientId = "string",
        KeyvaultName = "string",
        ResourceGroupName = "string",
        TenantId = "string",
        AzureKeyVaultSecretProviderClassName = "string",
        ExtendedLocation = new AzureNative.SecretSyncController.Inputs.AzureResourceManagerCommonTypesExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Location = "string",
        Objects = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := secretsynccontroller.NewAzureKeyVaultSecretProviderClass(ctx, "azureKeyVaultSecretProviderClassResource", &secretsynccontroller.AzureKeyVaultSecretProviderClassArgs{
    	ClientId:                             pulumi.String("string"),
    	KeyvaultName:                         pulumi.String("string"),
    	ResourceGroupName:                    pulumi.String("string"),
    	TenantId:                             pulumi.String("string"),
    	AzureKeyVaultSecretProviderClassName: pulumi.String("string"),
    	ExtendedLocation: &secretsynccontroller.AzureResourceManagerCommonTypesExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Objects:  pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var azureKeyVaultSecretProviderClassResource = new AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClassResource", AzureKeyVaultSecretProviderClassArgs.builder()
        .clientId("string")
        .keyvaultName("string")
        .resourceGroupName("string")
        .tenantId("string")
        .azureKeyVaultSecretProviderClassName("string")
        .extendedLocation(AzureResourceManagerCommonTypesExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .location("string")
        .objects("string")
        .tags(Map.of("string", "string"))
        .build());
    
    azure_key_vault_secret_provider_class_resource = azure_native.secretsynccontroller.AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClassResource",
        client_id="string",
        keyvault_name="string",
        resource_group_name="string",
        tenant_id="string",
        azure_key_vault_secret_provider_class_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        location="string",
        objects="string",
        tags={
            "string": "string",
        })
    
    const azureKeyVaultSecretProviderClassResource = new azure_native.secretsynccontroller.AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClassResource", {
        clientId: "string",
        keyvaultName: "string",
        resourceGroupName: "string",
        tenantId: "string",
        azureKeyVaultSecretProviderClassName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        location: "string",
        objects: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:secretsynccontroller:AzureKeyVaultSecretProviderClass
    properties:
        azureKeyVaultSecretProviderClassName: string
        clientId: string
        extendedLocation:
            name: string
            type: string
        keyvaultName: string
        location: string
        objects: string
        resourceGroupName: string
        tags:
            string: string
        tenantId: string
    

    AzureKeyVaultSecretProviderClass 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 AzureKeyVaultSecretProviderClass resource accepts the following input properties:

    ClientId string
    The user assigned managed identity client ID that should be used to access the Azure Key Vault.
    KeyvaultName string
    The name of the Azure Key Vault to sync secrets from.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    TenantId string
    The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
    AzureKeyVaultSecretProviderClassName string
    The name of the AzureKeyVaultSecretProviderClass
    ExtendedLocation Pulumi.AzureNative.SecretSyncController.Inputs.AzureResourceManagerCommonTypesExtendedLocation
    The complex type of the extended location.
    Location string
    The geo-location where the resource lives
    Objects string
    Objects defines the desired state of synced K8s secret objects
    Tags Dictionary<string, string>
    Resource tags.
    ClientId string
    The user assigned managed identity client ID that should be used to access the Azure Key Vault.
    KeyvaultName string
    The name of the Azure Key Vault to sync secrets from.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    TenantId string
    The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
    AzureKeyVaultSecretProviderClassName string
    The name of the AzureKeyVaultSecretProviderClass
    ExtendedLocation AzureResourceManagerCommonTypesExtendedLocationArgs
    The complex type of the extended location.
    Location string
    The geo-location where the resource lives
    Objects string
    Objects defines the desired state of synced K8s secret objects
    Tags map[string]string
    Resource tags.
    clientId String
    The user assigned managed identity client ID that should be used to access the Azure Key Vault.
    keyvaultName String
    The name of the Azure Key Vault to sync secrets from.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    tenantId String
    The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
    azureKeyVaultSecretProviderClassName String
    The name of the AzureKeyVaultSecretProviderClass
    extendedLocation AzureResourceManagerCommonTypesExtendedLocation
    The complex type of the extended location.
    location String
    The geo-location where the resource lives
    objects String
    Objects defines the desired state of synced K8s secret objects
    tags Map<String,String>
    Resource tags.
    clientId string
    The user assigned managed identity client ID that should be used to access the Azure Key Vault.
    keyvaultName string
    The name of the Azure Key Vault to sync secrets from.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    tenantId string
    The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
    azureKeyVaultSecretProviderClassName string
    The name of the AzureKeyVaultSecretProviderClass
    extendedLocation AzureResourceManagerCommonTypesExtendedLocation
    The complex type of the extended location.
    location string
    The geo-location where the resource lives
    objects string
    Objects defines the desired state of synced K8s secret objects
    tags {[key: string]: string}
    Resource tags.
    client_id str
    The user assigned managed identity client ID that should be used to access the Azure Key Vault.
    keyvault_name str
    The name of the Azure Key Vault to sync secrets from.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    tenant_id str
    The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
    azure_key_vault_secret_provider_class_name str
    The name of the AzureKeyVaultSecretProviderClass
    extended_location AzureResourceManagerCommonTypesExtendedLocationArgs
    The complex type of the extended location.
    location str
    The geo-location where the resource lives
    objects str
    Objects defines the desired state of synced K8s secret objects
    tags Mapping[str, str]
    Resource tags.
    clientId String
    The user assigned managed identity client ID that should be used to access the Azure Key Vault.
    keyvaultName String
    The name of the Azure Key Vault to sync secrets from.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    tenantId String
    The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
    azureKeyVaultSecretProviderClassName String
    The name of the AzureKeyVaultSecretProviderClass
    extendedLocation Property Map
    The complex type of the extended location.
    location String
    The geo-location where the resource lives
    objects String
    Objects defines the desired state of synced K8s secret objects
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AzureKeyVaultSecretProviderClass resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the AzureKeyVaultSecretProviderClass instance.
    SystemData Pulumi.AzureNative.SecretSyncController.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the AzureKeyVaultSecretProviderClass instance.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the AzureKeyVaultSecretProviderClass instance.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    Provisioning state of the AzureKeyVaultSecretProviderClass instance.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    Provisioning state of the AzureKeyVaultSecretProviderClass instance.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the AzureKeyVaultSecretProviderClass instance.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AzureResourceManagerCommonTypesExtendedLocation, AzureResourceManagerCommonTypesExtendedLocationArgs

    Name string
    The name of the extended location.
    Type string | Pulumi.AzureNative.SecretSyncController.ExtendedLocationType
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string | ExtendedLocationType
    The type of the extended location.
    name String
    The name of the extended location.
    type String | ExtendedLocationType
    The type of the extended location.
    name string
    The name of the extended location.
    type string | ExtendedLocationType
    The type of the extended location.
    name str
    The name of the extended location.
    type str | ExtendedLocationType
    The type of the extended location.
    name String
    The name of the extended location.
    type String | "EdgeZone" | "CustomLocation"
    The type of the extended location.

    AzureResourceManagerCommonTypesExtendedLocationResponse, AzureResourceManagerCommonTypesExtendedLocationResponseArgs

    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.
    name string
    The name of the extended location.
    type string
    The type of the extended location.
    name str
    The name of the extended location.
    type str
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.

    ExtendedLocationType, ExtendedLocationTypeArgs

    EdgeZone
    EdgeZoneAzure Edge Zones location type
    CustomLocation
    CustomLocationAzure Custom Locations type
    ExtendedLocationTypeEdgeZone
    EdgeZoneAzure Edge Zones location type
    ExtendedLocationTypeCustomLocation
    CustomLocationAzure Custom Locations type
    EdgeZone
    EdgeZoneAzure Edge Zones location type
    CustomLocation
    CustomLocationAzure Custom Locations type
    EdgeZone
    EdgeZoneAzure Edge Zones location type
    CustomLocation
    CustomLocationAzure Custom Locations type
    EDGE_ZONE
    EdgeZoneAzure Edge Zones location type
    CUSTOM_LOCATION
    CustomLocationAzure Custom Locations type
    "EdgeZone"
    EdgeZoneAzure Edge Zones location type
    "CustomLocation"
    CustomLocationAzure Custom Locations type

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:secretsynccontroller:AzureKeyVaultSecretProviderClass akvspc-ssc-example /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SecretSyncController/azureKeyVaultSecretProviderClasses/{azureKeyVaultSecretProviderClassName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi