azure-native.secretsynccontroller.AzureKeyVaultSecretProviderClass
The AzureKeyVaultSecretProviderClass resource.
Uses Azure REST API version 2024-08-21-preview. In version 2.x of the Azure Native provider, it used 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/v3"
	"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 * 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",
});
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")
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.
- ResourceGroup stringName 
- 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.
- AzureKey stringVault Secret Provider Class Name 
- The name of the AzureKeyVaultSecretProviderClass
- ExtendedLocation Pulumi.Azure Native. Secret Sync Controller. Inputs. Azure Resource Manager Common Types Extended Location 
- 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
- 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.
- ResourceGroup stringName 
- 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.
- AzureKey stringVault Secret Provider Class Name 
- The name of the AzureKeyVaultSecretProviderClass
- ExtendedLocation AzureResource Manager Common Types Extended Location Args 
- 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
- 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.
- resourceGroup StringName 
- 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.
- azureKey StringVault Secret Provider Class Name 
- The name of the AzureKeyVaultSecretProviderClass
- extendedLocation AzureResource Manager Common Types Extended Location 
- 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
- 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.
- resourceGroup stringName 
- 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.
- azureKey stringVault Secret Provider Class Name 
- The name of the AzureKeyVaultSecretProviderClass
- extendedLocation AzureResource Manager Common Types Extended Location 
- 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
- {[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_ strname 
- 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_ strvault_ secret_ provider_ class_ name 
- The name of the AzureKeyVaultSecretProviderClass
- extended_location AzureResource Manager Common Types Extended Location Args 
- 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
- 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.
- resourceGroup StringName 
- 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.
- azureKey StringVault Secret Provider Class Name 
- 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
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AzureKeyVaultSecretProviderClass resource produces the following output properties:
- AzureApi stringVersion 
- The Azure API version of the resource.
- 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.Azure Native. Secret Sync Controller. Outputs. System Data Response 
- 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"
- AzureApi stringVersion 
- The Azure API version of the resource.
- 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 SystemData Response 
- 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"
- azureApi StringVersion 
- The Azure API version of the resource.
- 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 SystemData Response 
- 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"
- azureApi stringVersion 
- The Azure API version of the resource.
- 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 SystemData Response 
- 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"
- azure_api_ strversion 
- The Azure API version of the resource.
- 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 SystemData Response 
- 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"
- azureApi StringVersion 
- The Azure API version of the resource.
- 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              
The complex type of the extended location.- Name string
- The name of the extended location.
- Type
string | Pulumi.Azure Native. Secret Sync Controller. Extended Location Type 
- The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | ExtendedLocation Type 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | ExtendedLocation Type 
- The type of the extended location.
- name string
- The name of the extended location.
- type
string | ExtendedLocation Type 
- The type of the extended location.
- name str
- The name of the extended location.
- type
str | ExtendedLocation Type 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | "EdgeZone" | "Custom Location" 
- The type of the extended location.
AzureResourceManagerCommonTypesExtendedLocationResponse, AzureResourceManagerCommonTypesExtendedLocationResponseArgs                
The complex type of the extended location.ExtendedLocationType, ExtendedLocationTypeArgs      
- EdgeZone 
- EdgeZoneAzure Edge Zones location type
- CustomLocation 
- CustomLocationAzure Custom Locations type
- ExtendedLocation Type Edge Zone 
- EdgeZoneAzure Edge Zones location type
- ExtendedLocation Type Custom Location 
- 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      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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
