azure-native.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",
});
});
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:
- Client
Id string - The user assigned managed identity client ID that should be used to access the Azure Key Vault.
- Keyvault
Name string - The name of the Azure Key Vault to sync secrets from.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Tenant
Id string - The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
- Azure
Key stringVault Secret Provider Class Name - The name of the AzureKeyVaultSecretProviderClass
- Extended
Location 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.
- Client
Id string - The user assigned managed identity client ID that should be used to access the Azure Key Vault.
- Keyvault
Name string - The name of the Azure Key Vault to sync secrets from.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Tenant
Id string - The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
- Azure
Key stringVault 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 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.
- client
Id String - The user assigned managed identity client ID that should be used to access the Azure Key Vault.
- keyvault
Name String - The name of the Azure Key Vault to sync secrets from.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- tenant
Id String - The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
- azure
Key StringVault Secret Provider Class Name - The name of the AzureKeyVaultSecretProviderClass
- extended
Location 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.
- client
Id string - The user assigned managed identity client ID that should be used to access the Azure Key Vault.
- keyvault
Name string - The name of the Azure Key Vault to sync secrets from.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- tenant
Id string - The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
- azure
Key stringVault Secret Provider Class Name - The name of the AzureKeyVaultSecretProviderClass
- extended
Location 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.
- client
Id String - The user assigned managed identity client ID that should be used to access the Azure Key Vault.
- keyvault
Name String - The name of the Azure Key Vault to sync secrets from.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- tenant
Id String - The Azure Active Directory tenant ID that should be used for authenticating requests to the Azure Key Vault.
- azure
Key StringVault Secret Provider Class Name - The name of the AzureKeyVaultSecretProviderClass
- extended
Location 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the AzureKeyVaultSecretProviderClass instance.
- System
Data 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the AzureKeyVaultSecretProviderClass instance.
- System
Data 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the AzureKeyVaultSecretProviderClass instance.
- system
Data 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of the AzureKeyVaultSecretProviderClass instance.
- system
Data 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"
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the AzureKeyVaultSecretProviderClass instance.
- system
Data 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.
Azure Native. Secret Sync Controller. Extended Location Type - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Type - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Type - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Type - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Type - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Edge
Zone" | "Custom Location" - The type of the extended location.
AzureResourceManagerCommonTypesExtendedLocationResponse, AzureResourceManagerCommonTypesExtendedLocationResponseArgs
ExtendedLocationType, ExtendedLocationTypeArgs
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- Extended
Location Type Edge Zone - EdgeZoneAzure Edge Zones location type
- Extended
Location Type Custom Location - CustomLocationAzure Custom Locations type
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- Edge
Zone - EdgeZoneAzure Edge Zones location type
- Custom
Location - CustomLocationAzure Custom Locations type
- EDGE_ZONE
- EdgeZoneAzure Edge Zones location type
- CUSTOM_LOCATION
- CustomLocationAzure Custom Locations type
- "Edge
Zone" - EdgeZoneAzure Edge Zones location type
- "Custom
Location" - CustomLocationAzure Custom Locations type
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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