1. Packages
  2. Azure Native v2
  3. API Docs
  4. secretsynccontroller
  5. AzureKeyVaultSecretProviderClass
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.secretsynccontroller.AzureKeyVaultSecretProviderClass

Explore with Pulumi AI

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. AzureKeyVaultSecretProviderClassArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. AzureKeyVaultSecretProviderClassArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AzureKeyVaultSecretProviderClassArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    Location = "string",
    Objects = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := secretsynccontroller.NewAzureKeyVaultSecretProviderClass(ctx, "azureKeyVaultSecretProviderClassResource", &secretsynccontroller.AzureKeyVaultSecretProviderClassArgs{
	ClientId:                             "string",
	KeyvaultName:                         "string",
	ResourceGroupName:                    "string",
	TenantId:                             "string",
	AzureKeyVaultSecretProviderClassName: "string",
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	Location: "string",
	Objects:  "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var azureKeyVaultSecretProviderClassResource = new AzureKeyVaultSecretProviderClass("azureKeyVaultSecretProviderClassResource", AzureKeyVaultSecretProviderClassArgs.builder()
    .clientId("string")
    .keyvaultName("string")
    .resourceGroupName("string")
    .tenantId("string")
    .azureKeyVaultSecretProviderClassName("string")
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .objects("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
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,
    })
Copy
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",
    },
});
Copy
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
Copy

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 This property is required. string
The user assigned managed identity client ID that should be used to access the Azure Key Vault.
KeyvaultName This property is required. string
The name of the Azure Key Vault to sync secrets from.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
TenantId This property is required. string
The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
AzureKeyVaultSecretProviderClassName Changes to this property will trigger replacement. string
The name of the AzureKeyVaultSecretProviderClass
ExtendedLocation Changes to this property will trigger replacement. Pulumi.AzureNative.SecretSyncController.Inputs.AzureResourceManagerCommonTypesExtendedLocation
The complex type of the extended location.
Location Changes to this property will trigger replacement. 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 This property is required. string
The user assigned managed identity client ID that should be used to access the Azure Key Vault.
KeyvaultName This property is required. string
The name of the Azure Key Vault to sync secrets from.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
TenantId This property is required. string
The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
AzureKeyVaultSecretProviderClassName Changes to this property will trigger replacement. string
The name of the AzureKeyVaultSecretProviderClass
ExtendedLocation Changes to this property will trigger replacement. AzureResourceManagerCommonTypesExtendedLocationArgs
The complex type of the extended location.
Location Changes to this property will trigger replacement. 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 This property is required. String
The user assigned managed identity client ID that should be used to access the Azure Key Vault.
keyvaultName This property is required. String
The name of the Azure Key Vault to sync secrets from.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
tenantId This property is required. String
The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
azureKeyVaultSecretProviderClassName Changes to this property will trigger replacement. String
The name of the AzureKeyVaultSecretProviderClass
extendedLocation Changes to this property will trigger replacement. AzureResourceManagerCommonTypesExtendedLocation
The complex type of the extended location.
location Changes to this property will trigger replacement. 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 This property is required. string
The user assigned managed identity client ID that should be used to access the Azure Key Vault.
keyvaultName This property is required. string
The name of the Azure Key Vault to sync secrets from.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
tenantId This property is required. string
The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
azureKeyVaultSecretProviderClassName Changes to this property will trigger replacement. string
The name of the AzureKeyVaultSecretProviderClass
extendedLocation Changes to this property will trigger replacement. AzureResourceManagerCommonTypesExtendedLocation
The complex type of the extended location.
location Changes to this property will trigger replacement. 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 This property is required. str
The user assigned managed identity client ID that should be used to access the Azure Key Vault.
keyvault_name This property is required. str
The name of the Azure Key Vault to sync secrets from.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
tenant_id This property is required. 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 Changes to this property will trigger replacement. str
The name of the AzureKeyVaultSecretProviderClass
extended_location Changes to this property will trigger replacement. AzureResourceManagerCommonTypesExtendedLocationArgs
The complex type of the extended location.
location Changes to this property will trigger replacement. 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 This property is required. String
The user assigned managed identity client ID that should be used to access the Azure Key Vault.
keyvaultName This property is required. String
The name of the Azure Key Vault to sync secrets from.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
tenantId This property is required. String
The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
azureKeyVaultSecretProviderClassName Changes to this property will trigger replacement. String
The name of the AzureKeyVaultSecretProviderClass
extendedLocation Changes to this property will trigger replacement. Property Map
The complex type of the extended location.
location Changes to this property will trigger replacement. 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 This property is required. string
The name of the extended location.
Type This property is required. string | Pulumi.AzureNative.SecretSyncController.ExtendedLocationType
The type of the extended location.
Name This property is required. string
The name of the extended location.
Type This property is required. string | ExtendedLocationType
The type of the extended location.
name This property is required. String
The name of the extended location.
type This property is required. String | ExtendedLocationType
The type of the extended location.
name This property is required. string
The name of the extended location.
type This property is required. string | ExtendedLocationType
The type of the extended location.
name This property is required. str
The name of the extended location.
type This property is required. str | ExtendedLocationType
The type of the extended location.
name This property is required. String
The name of the extended location.
type This property is required. String | "EdgeZone" | "CustomLocation"
The type of the extended location.

AzureResourceManagerCommonTypesExtendedLocationResponse
, AzureResourceManagerCommonTypesExtendedLocationResponseArgs

Name This property is required. string
The name of the extended location.
Type This property is required. string
The type of the extended location.
Name This property is required. string
The name of the extended location.
Type This property is required. string
The type of the extended location.
name This property is required. String
The name of the extended location.
type This property is required. String
The type of the extended location.
name This property is required. string
The name of the extended location.
type This property is required. string
The type of the extended location.
name This property is required. str
The name of the extended location.
type This property is required. str
The type of the extended location.
name This property is required. String
The name of the extended location.
type This property is required. 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} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0