azure-native.kubernetesconfiguration.Extension
Explore with Pulumi AI
The Extension object. Azure REST API version: 2023-05-01. Prior API version in Azure Native 1.x: 2020-07-01-preview
Example Usage
Create Extension
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var extension = new AzureNative.KubernetesConfiguration.Extension("extension", new()
{
AutoUpgradeMinorVersion = true,
ClusterName = "clusterName1",
ClusterResourceName = "connectedClusters",
ClusterRp = "Microsoft.Kubernetes",
ConfigurationProtectedSettings =
{
{ "omsagent.secret.key", "secretKeyValue01" },
},
ConfigurationSettings =
{
{ "omsagent.env.clusterName", "clusterName1" },
{ "omsagent.secret.wsid", "a38cef99-5a89-52ed-b6db-22095c23664b" },
},
ExtensionName = "ClusterMonitor",
ExtensionType = "azuremonitor-containers",
ReleaseTrain = "Preview",
ResourceGroupName = "rg1",
Scope = new AzureNative.KubernetesConfiguration.Inputs.ScopeArgs
{
Cluster = new AzureNative.KubernetesConfiguration.Inputs.ScopeClusterArgs
{
ReleaseNamespace = "kube-system",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-azure-native-sdk/kubernetesconfiguration/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kubernetesconfiguration.NewExtension(ctx, "extension", &kubernetesconfiguration.ExtensionArgs{
AutoUpgradeMinorVersion: pulumi.Bool(true),
ClusterName: pulumi.String("clusterName1"),
ClusterResourceName: pulumi.String("connectedClusters"),
ClusterRp: pulumi.String("Microsoft.Kubernetes"),
ConfigurationProtectedSettings: pulumi.StringMap{
"omsagent.secret.key": pulumi.String("secretKeyValue01"),
},
ConfigurationSettings: pulumi.StringMap{
"omsagent.env.clusterName": pulumi.String("clusterName1"),
"omsagent.secret.wsid": pulumi.String("a38cef99-5a89-52ed-b6db-22095c23664b"),
},
ExtensionName: pulumi.String("ClusterMonitor"),
ExtensionType: pulumi.String("azuremonitor-containers"),
ReleaseTrain: pulumi.String("Preview"),
ResourceGroupName: pulumi.String("rg1"),
Scope: kubernetesconfiguration.ScopeResponse{
Cluster: &kubernetesconfiguration.ScopeClusterArgs{
ReleaseNamespace: pulumi.String("kube-system"),
},
},
})
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.kubernetesconfiguration.Extension;
import com.pulumi.azurenative.kubernetesconfiguration.ExtensionArgs;
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 extension = new Extension("extension", ExtensionArgs.builder()
.autoUpgradeMinorVersion(true)
.clusterName("clusterName1")
.clusterResourceName("connectedClusters")
.clusterRp("Microsoft.Kubernetes")
.configurationProtectedSettings(Map.of("omsagent.secret.key", "secretKeyValue01"))
.configurationSettings(Map.ofEntries(
Map.entry("omsagent.env.clusterName", "clusterName1"),
Map.entry("omsagent.secret.wsid", "a38cef99-5a89-52ed-b6db-22095c23664b")
))
.extensionName("ClusterMonitor")
.extensionType("azuremonitor-containers")
.releaseTrain("Preview")
.resourceGroupName("rg1")
.scope(Map.of("cluster", Map.of("releaseNamespace", "kube-system")))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
extension = azure_native.kubernetesconfiguration.Extension("extension",
auto_upgrade_minor_version=True,
cluster_name="clusterName1",
cluster_resource_name="connectedClusters",
cluster_rp="Microsoft.Kubernetes",
configuration_protected_settings={
"omsagent.secret.key": "secretKeyValue01",
},
configuration_settings={
"omsagent.env.clusterName": "clusterName1",
"omsagent.secret.wsid": "a38cef99-5a89-52ed-b6db-22095c23664b",
},
extension_name="ClusterMonitor",
extension_type="azuremonitor-containers",
release_train="Preview",
resource_group_name="rg1",
scope=azure_native.kubernetesconfiguration.ScopeResponseArgs(
cluster=azure_native.kubernetesconfiguration.ScopeClusterArgs(
release_namespace="kube-system",
),
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const extension = new azure_native.kubernetesconfiguration.Extension("extension", {
autoUpgradeMinorVersion: true,
clusterName: "clusterName1",
clusterResourceName: "connectedClusters",
clusterRp: "Microsoft.Kubernetes",
configurationProtectedSettings: {
"omsagent.secret.key": "secretKeyValue01",
},
configurationSettings: {
"omsagent.env.clusterName": "clusterName1",
"omsagent.secret.wsid": "a38cef99-5a89-52ed-b6db-22095c23664b",
},
extensionName: "ClusterMonitor",
extensionType: "azuremonitor-containers",
releaseTrain: "Preview",
resourceGroupName: "rg1",
scope: {
cluster: {
releaseNamespace: "kube-system",
},
},
});
resources:
extension:
type: azure-native:kubernetesconfiguration:Extension
properties:
autoUpgradeMinorVersion: true
clusterName: clusterName1
clusterResourceName: connectedClusters
clusterRp: Microsoft.Kubernetes
configurationProtectedSettings:
omsagent.secret.key: secretKeyValue01
configurationSettings:
omsagent.env.clusterName: clusterName1
omsagent.secret.wsid: a38cef99-5a89-52ed-b6db-22095c23664b
extensionName: ClusterMonitor
extensionType: azuremonitor-containers
releaseTrain: Preview
resourceGroupName: rg1
scope:
cluster:
releaseNamespace: kube-system
Create Extension with Plan
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var extension = new AzureNative.KubernetesConfiguration.Extension("extension", new()
{
AutoUpgradeMinorVersion = true,
ClusterName = "clusterName1",
ClusterResourceName = "connectedClusters",
ClusterRp = "Microsoft.Kubernetes",
ExtensionName = "azureVote",
ExtensionType = "azure-vote",
Plan = new AzureNative.KubernetesConfiguration.Inputs.PlanArgs
{
Name = "azure-vote-standard",
Product = "azure-vote-standard-offer-id",
Publisher = "Microsoft",
},
ReleaseTrain = "Preview",
ResourceGroupName = "rg1",
});
});
package main
import (
"github.com/pulumi/pulumi-azure-native-sdk/kubernetesconfiguration/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kubernetesconfiguration.NewExtension(ctx, "extension", &kubernetesconfiguration.ExtensionArgs{
AutoUpgradeMinorVersion: pulumi.Bool(true),
ClusterName: pulumi.String("clusterName1"),
ClusterResourceName: pulumi.String("connectedClusters"),
ClusterRp: pulumi.String("Microsoft.Kubernetes"),
ExtensionName: pulumi.String("azureVote"),
ExtensionType: pulumi.String("azure-vote"),
Plan: &kubernetesconfiguration.PlanArgs{
Name: pulumi.String("azure-vote-standard"),
Product: pulumi.String("azure-vote-standard-offer-id"),
Publisher: pulumi.String("Microsoft"),
},
ReleaseTrain: pulumi.String("Preview"),
ResourceGroupName: pulumi.String("rg1"),
})
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.kubernetesconfiguration.Extension;
import com.pulumi.azurenative.kubernetesconfiguration.ExtensionArgs;
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 extension = new Extension("extension", ExtensionArgs.builder()
.autoUpgradeMinorVersion(true)
.clusterName("clusterName1")
.clusterResourceName("connectedClusters")
.clusterRp("Microsoft.Kubernetes")
.extensionName("azureVote")
.extensionType("azure-vote")
.plan(Map.ofEntries(
Map.entry("name", "azure-vote-standard"),
Map.entry("product", "azure-vote-standard-offer-id"),
Map.entry("publisher", "Microsoft")
))
.releaseTrain("Preview")
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
extension = azure_native.kubernetesconfiguration.Extension("extension",
auto_upgrade_minor_version=True,
cluster_name="clusterName1",
cluster_resource_name="connectedClusters",
cluster_rp="Microsoft.Kubernetes",
extension_name="azureVote",
extension_type="azure-vote",
plan=azure_native.kubernetesconfiguration.PlanArgs(
name="azure-vote-standard",
product="azure-vote-standard-offer-id",
publisher="Microsoft",
),
release_train="Preview",
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const extension = new azure_native.kubernetesconfiguration.Extension("extension", {
autoUpgradeMinorVersion: true,
clusterName: "clusterName1",
clusterResourceName: "connectedClusters",
clusterRp: "Microsoft.Kubernetes",
extensionName: "azureVote",
extensionType: "azure-vote",
plan: {
name: "azure-vote-standard",
product: "azure-vote-standard-offer-id",
publisher: "Microsoft",
},
releaseTrain: "Preview",
resourceGroupName: "rg1",
});
resources:
extension:
type: azure-native:kubernetesconfiguration:Extension
properties:
autoUpgradeMinorVersion: true
clusterName: clusterName1
clusterResourceName: connectedClusters
clusterRp: Microsoft.Kubernetes
extensionName: azureVote
extensionType: azure-vote
plan:
name: azure-vote-standard
product: azure-vote-standard-offer-id
publisher: Microsoft
releaseTrain: Preview
resourceGroupName: rg1
Create Extension Resource
new Extension(name: string, args: ExtensionArgs, opts?: CustomResourceOptions);
@overload
def Extension(resource_name: str,
opts: Optional[ResourceOptions] = None,
aks_assigned_identity: Optional[ExtensionAksAssignedIdentityArgs] = None,
auto_upgrade_minor_version: Optional[bool] = None,
cluster_name: Optional[str] = None,
cluster_resource_name: Optional[str] = None,
cluster_rp: Optional[str] = None,
configuration_protected_settings: Optional[Mapping[str, str]] = None,
configuration_settings: Optional[Mapping[str, str]] = None,
extension_name: Optional[str] = None,
extension_type: Optional[str] = None,
identity: Optional[IdentityArgs] = None,
plan: Optional[PlanArgs] = None,
release_train: Optional[str] = None,
resource_group_name: Optional[str] = None,
scope: Optional[ScopeArgs] = None,
statuses: Optional[Sequence[ExtensionStatusArgs]] = None,
version: Optional[str] = None)
@overload
def Extension(resource_name: str,
args: ExtensionArgs,
opts: Optional[ResourceOptions] = None)
func NewExtension(ctx *Context, name string, args ExtensionArgs, opts ...ResourceOption) (*Extension, error)
public Extension(string name, ExtensionArgs args, CustomResourceOptions? opts = null)
public Extension(String name, ExtensionArgs args)
public Extension(String name, ExtensionArgs args, CustomResourceOptions options)
type: azure-native:kubernetesconfiguration:Extension
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExtensionArgs
- 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 ExtensionArgs
- 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 ExtensionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExtensionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExtensionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Extension Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Extension resource accepts the following input properties:
- Cluster
Name string The name of the kubernetes cluster.
- Cluster
Resource stringName The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters.
- Cluster
Rp string The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService.
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- Aks
Assigned Pulumi.Identity Azure Native. Kubernetes Configuration. Inputs. Extension Aks Assigned Identity Identity of the Extension resource in an AKS cluster
- Auto
Upgrade boolMinor Version Flag to note if this extension participates in auto upgrade of minor version, or not.
- Configuration
Protected Dictionary<string, string>Settings Configuration settings that are sensitive, as name-value pairs for configuring this extension.
- Configuration
Settings Dictionary<string, string> Configuration settings, as name-value pairs for configuring this extension.
- Extension
Name string Name of the Extension.
- Extension
Type string Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
- Identity
Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Identity Identity of the Extension resource
- Plan
Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Plan The plan information.
- Release
Train string ReleaseTrain this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.
- Scope
Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Scope Scope at which the extension is installed.
- Statuses
List<Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Extension Status> Status from this extension.
- Version string
User-specified version of the extension for this extension to 'pin'. To use 'version', autoUpgradeMinorVersion must be 'false'.
- Cluster
Name string The name of the kubernetes cluster.
- Cluster
Resource stringName The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters.
- Cluster
Rp string The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService.
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- Aks
Assigned ExtensionIdentity Aks Assigned Identity Args Identity of the Extension resource in an AKS cluster
- Auto
Upgrade boolMinor Version Flag to note if this extension participates in auto upgrade of minor version, or not.
- Configuration
Protected map[string]stringSettings Configuration settings that are sensitive, as name-value pairs for configuring this extension.
- Configuration
Settings map[string]string Configuration settings, as name-value pairs for configuring this extension.
- Extension
Name string Name of the Extension.
- Extension
Type string Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
- Identity
Identity
Args Identity of the Extension resource
- Plan
Plan
Args The plan information.
- Release
Train string ReleaseTrain this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.
- Scope
Scope
Args Scope at which the extension is installed.
- Statuses
[]Extension
Status Args Status from this extension.
- Version string
User-specified version of the extension for this extension to 'pin'. To use 'version', autoUpgradeMinorVersion must be 'false'.
- cluster
Name String The name of the kubernetes cluster.
- cluster
Resource StringName The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters.
- cluster
Rp String The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- aks
Assigned ExtensionIdentity Aks Assigned Identity Identity of the Extension resource in an AKS cluster
- auto
Upgrade BooleanMinor Version Flag to note if this extension participates in auto upgrade of minor version, or not.
- configuration
Protected Map<String,String>Settings Configuration settings that are sensitive, as name-value pairs for configuring this extension.
- configuration
Settings Map<String,String> Configuration settings, as name-value pairs for configuring this extension.
- extension
Name String Name of the Extension.
- extension
Type String Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
- identity Identity
Identity of the Extension resource
- plan Plan
The plan information.
- release
Train String ReleaseTrain this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.
- scope Scope
Scope at which the extension is installed.
- statuses
List<Extension
Status> Status from this extension.
- version String
User-specified version of the extension for this extension to 'pin'. To use 'version', autoUpgradeMinorVersion must be 'false'.
- cluster
Name string The name of the kubernetes cluster.
- cluster
Resource stringName The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters.
- cluster
Rp string The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService.
- resource
Group stringName The name of the resource group. The name is case insensitive.
- aks
Assigned ExtensionIdentity Aks Assigned Identity Identity of the Extension resource in an AKS cluster
- auto
Upgrade booleanMinor Version Flag to note if this extension participates in auto upgrade of minor version, or not.
- configuration
Protected {[key: string]: string}Settings Configuration settings that are sensitive, as name-value pairs for configuring this extension.
- configuration
Settings {[key: string]: string} Configuration settings, as name-value pairs for configuring this extension.
- extension
Name string Name of the Extension.
- extension
Type string Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
- identity Identity
Identity of the Extension resource
- plan Plan
The plan information.
- release
Train string ReleaseTrain this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.
- scope Scope
Scope at which the extension is installed.
- statuses
Extension
Status[] Status from this extension.
- version string
User-specified version of the extension for this extension to 'pin'. To use 'version', autoUpgradeMinorVersion must be 'false'.
- cluster_
name str The name of the kubernetes cluster.
- cluster_
resource_ strname The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters.
- cluster_
rp str The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService.
- resource_
group_ strname The name of the resource group. The name is case insensitive.
- aks_
assigned_ Extensionidentity Aks Assigned Identity Args Identity of the Extension resource in an AKS cluster
- auto_
upgrade_ boolminor_ version Flag to note if this extension participates in auto upgrade of minor version, or not.
- configuration_
protected_ Mapping[str, str]settings Configuration settings that are sensitive, as name-value pairs for configuring this extension.
- configuration_
settings Mapping[str, str] Configuration settings, as name-value pairs for configuring this extension.
- extension_
name str Name of the Extension.
- extension_
type str Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
- identity
Identity
Args Identity of the Extension resource
- plan
Plan
Args The plan information.
- release_
train str ReleaseTrain this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.
- scope
Scope
Args Scope at which the extension is installed.
- statuses
Sequence[Extension
Status Args] Status from this extension.
- version str
User-specified version of the extension for this extension to 'pin'. To use 'version', autoUpgradeMinorVersion must be 'false'.
- cluster
Name String The name of the kubernetes cluster.
- cluster
Resource StringName The Kubernetes cluster resource name - i.e. managedClusters, connectedClusters, provisionedClusters.
- cluster
Rp String The Kubernetes cluster RP - i.e. Microsoft.ContainerService, Microsoft.Kubernetes, Microsoft.HybridContainerService.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- aks
Assigned Property MapIdentity Identity of the Extension resource in an AKS cluster
- auto
Upgrade BooleanMinor Version Flag to note if this extension participates in auto upgrade of minor version, or not.
- configuration
Protected Map<String>Settings Configuration settings that are sensitive, as name-value pairs for configuring this extension.
- configuration
Settings Map<String> Configuration settings, as name-value pairs for configuring this extension.
- extension
Name String Name of the Extension.
- extension
Type String Type of the Extension, of which this resource is an instance of. It must be one of the Extension Types registered with Microsoft.KubernetesConfiguration by the Extension publisher.
- identity Property Map
Identity of the Extension resource
- plan Property Map
The plan information.
- release
Train String ReleaseTrain this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.
- scope Property Map
Scope at which the extension is installed.
- statuses List<Property Map>
Status from this extension.
- version String
User-specified version of the extension for this extension to 'pin'. To use 'version', autoUpgradeMinorVersion must be 'false'.
Outputs
All input properties are implicitly available as output properties. Additionally, the Extension resource produces the following output properties:
- Current
Version string Currently installed version of the extension.
- Custom
Location Dictionary<string, string>Settings Custom Location settings properties.
- Error
Info Pulumi.Azure Native. Kubernetes Configuration. Outputs. Error Detail Response Error information from the Agent - e.g. errors during installation.
- Id string
The provider-assigned unique ID for this managed resource.
- Is
System boolExtension Flag to note if this extension is a system extension
- Name string
The name of the resource
- Package
Uri string Uri of the Helm package
- Provisioning
State string Status of installation of this extension.
- System
Data Pulumi.Azure Native. Kubernetes Configuration. Outputs. System Data Response Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources
- Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Current
Version string Currently installed version of the extension.
- Custom
Location map[string]stringSettings Custom Location settings properties.
- Error
Info ErrorDetail Response Error information from the Agent - e.g. errors during installation.
- Id string
The provider-assigned unique ID for this managed resource.
- Is
System boolExtension Flag to note if this extension is a system extension
- Name string
The name of the resource
- Package
Uri string Uri of the Helm package
- Provisioning
State string Status of installation of this extension.
- System
Data SystemData Response Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources
- Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- current
Version String Currently installed version of the extension.
- custom
Location Map<String,String>Settings Custom Location settings properties.
- error
Info ErrorDetail Response Error information from the Agent - e.g. errors during installation.
- id String
The provider-assigned unique ID for this managed resource.
- is
System BooleanExtension Flag to note if this extension is a system extension
- name String
The name of the resource
- package
Uri String Uri of the Helm package
- provisioning
State String Status of installation of this extension.
- system
Data SystemData Response Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources
- type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- current
Version string Currently installed version of the extension.
- custom
Location {[key: string]: string}Settings Custom Location settings properties.
- error
Info ErrorDetail Response Error information from the Agent - e.g. errors during installation.
- id string
The provider-assigned unique ID for this managed resource.
- is
System booleanExtension Flag to note if this extension is a system extension
- name string
The name of the resource
- package
Uri string Uri of the Helm package
- provisioning
State string Status of installation of this extension.
- system
Data SystemData Response Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources
- type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- current_
version str Currently installed version of the extension.
- custom_
location_ Mapping[str, str]settings Custom Location settings properties.
- error_
info ErrorDetail Response Error information from the Agent - e.g. errors during installation.
- id str
The provider-assigned unique ID for this managed resource.
- is_
system_ boolextension Flag to note if this extension is a system extension
- name str
The name of the resource
- package_
uri str Uri of the Helm package
- provisioning_
state str Status of installation of this extension.
- system_
data SystemData Response Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources
- type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- current
Version String Currently installed version of the extension.
- custom
Location Map<String>Settings Custom Location settings properties.
- error
Info Property Map Error information from the Agent - e.g. errors during installation.
- id String
The provider-assigned unique ID for this managed resource.
- is
System BooleanExtension Flag to note if this extension is a system extension
- name String
The name of the resource
- package
Uri String Uri of the Helm package
- provisioning
State String Status of installation of this extension.
- system
Data Property Map Top level metadata https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/common-api-contracts.md#system-metadata-for-all-azure-resources
- type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AKSIdentityType, AKSIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- AKSIdentity
Type System Assigned - SystemAssigned
- AKSIdentity
Type User Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info List<Pulumi.Azure Native. Kubernetes Configuration. Inputs. Error Additional Info Response> The error additional info.
- Code string
The error code.
- Details
List<Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Error Detail Response> The error details.
- Message string
The error message.
- Target string
The error target.
- Additional
Info []ErrorAdditional Info Response The error additional info.
- Code string
The error code.
- Details
[]Error
Detail Response The error details.
- Message string
The error message.
- Target string
The error target.
- additional
Info List<ErrorAdditional Info Response> The error additional info.
- code String
The error code.
- details
List<Error
Detail Response> The error details.
- message String
The error message.
- target String
The error target.
- additional
Info ErrorAdditional Info Response[] The error additional info.
- code string
The error code.
- details
Error
Detail Response[] The error details.
- message string
The error message.
- target string
The error target.
- additional_
info Sequence[ErrorAdditional Info Response] The error additional info.
- code str
The error code.
- details
Sequence[Error
Detail Response] The error details.
- message str
The error message.
- target str
The error target.
- additional
Info List<Property Map> The error additional info.
- code String
The error code.
- details List<Property Map>
The error details.
- message String
The error message.
- target String
The error target.
ExtensionAksAssignedIdentity, ExtensionAksAssignedIdentityArgs
- Type
Pulumi.
Azure Native. Kubernetes Configuration. AKSIdentity Type The identity type.
- Type
AKSIdentity
Type The identity type.
- type
AKSIdentity
Type The identity type.
- type
AKSIdentity
Type The identity type.
- type
AKSIdentity
Type The identity type.
- type
"System
Assigned" | "User Assigned" The identity type.
ExtensionResponseAksAssignedIdentity, ExtensionResponseAksAssignedIdentityArgs
- Principal
Id string The principal ID of resource identity.
- Tenant
Id string The tenant ID of resource.
- Type string
The identity type.
- Principal
Id string The principal ID of resource identity.
- Tenant
Id string The tenant ID of resource.
- Type string
The identity type.
- principal
Id String The principal ID of resource identity.
- tenant
Id String The tenant ID of resource.
- type String
The identity type.
- principal
Id string The principal ID of resource identity.
- tenant
Id string The tenant ID of resource.
- type string
The identity type.
- principal_
id str The principal ID of resource identity.
- tenant_
id str The tenant ID of resource.
- type str
The identity type.
- principal
Id String The principal ID of resource identity.
- tenant
Id String The tenant ID of resource.
- type String
The identity type.
ExtensionStatus, ExtensionStatusArgs
- Code string
Status code provided by the Extension
- Display
Status string Short description of status of the extension.
- Level
string | Pulumi.
Azure Native. Kubernetes Configuration. Level Type Level of the status.
- Message string
Detailed message of the status from the Extension.
- Time string
DateLiteral (per ISO8601) noting the time of installation status.
- code String
Status code provided by the Extension
- display
Status String Short description of status of the extension.
- level String | "Error" | "Warning" | "Information"
Level of the status.
- message String
Detailed message of the status from the Extension.
- time String
DateLiteral (per ISO8601) noting the time of installation status.
ExtensionStatusResponse, ExtensionStatusResponseArgs
- Code string
Status code provided by the Extension
- Display
Status string Short description of status of the extension.
- Level string
Level of the status.
- Message string
Detailed message of the status from the Extension.
- Time string
DateLiteral (per ISO8601) noting the time of installation status.
- Code string
Status code provided by the Extension
- Display
Status string Short description of status of the extension.
- Level string
Level of the status.
- Message string
Detailed message of the status from the Extension.
- Time string
DateLiteral (per ISO8601) noting the time of installation status.
- code String
Status code provided by the Extension
- display
Status String Short description of status of the extension.
- level String
Level of the status.
- message String
Detailed message of the status from the Extension.
- time String
DateLiteral (per ISO8601) noting the time of installation status.
- code string
Status code provided by the Extension
- display
Status string Short description of status of the extension.
- level string
Level of the status.
- message string
Detailed message of the status from the Extension.
- time string
DateLiteral (per ISO8601) noting the time of installation status.
- code str
Status code provided by the Extension
- display_
status str Short description of status of the extension.
- level str
Level of the status.
- message str
Detailed message of the status from the Extension.
- time str
DateLiteral (per ISO8601) noting the time of installation status.
- code String
Status code provided by the Extension
- display
Status String Short description of status of the extension.
- level String
Level of the status.
- message String
Detailed message of the status from the Extension.
- time String
DateLiteral (per ISO8601) noting the time of installation status.
Identity, IdentityArgs
- Type
Pulumi.
Azure Native. Kubernetes Configuration. Resource Identity Type The identity type.
- Type
Resource
Identity Type The identity type.
- type
Resource
Identity Type The identity type.
- type
Resource
Identity Type The identity type.
- type
Resource
Identity Type The identity type.
- type
"System
Assigned" The identity type.
IdentityResponse, IdentityResponseArgs
- Principal
Id string The principal ID of resource identity.
- Tenant
Id string The tenant ID of resource.
- Type string
The identity type.
- Principal
Id string The principal ID of resource identity.
- Tenant
Id string The tenant ID of resource.
- Type string
The identity type.
- principal
Id String The principal ID of resource identity.
- tenant
Id String The tenant ID of resource.
- type String
The identity type.
- principal
Id string The principal ID of resource identity.
- tenant
Id string The tenant ID of resource.
- type string
The identity type.
- principal_
id str The principal ID of resource identity.
- tenant_
id str The tenant ID of resource.
- type str
The identity type.
- principal
Id String The principal ID of resource identity.
- tenant
Id String The tenant ID of resource.
- type String
The identity type.
LevelType, LevelTypeArgs
- Error
- Error
- Warning
- Warning
- Information
- Information
- Level
Type Error - Error
- Level
Type Warning - Warning
- Level
Type Information - Information
- Error
- Error
- Warning
- Warning
- Information
- Information
- Error
- Error
- Warning
- Warning
- Information
- Information
- ERROR
- Error
- WARNING
- Warning
- INFORMATION
- Information
- "Error"
- Error
- "Warning"
- Warning
- "Information"
- Information
Plan, PlanArgs
- Name string
A user defined name of the 3rd Party Artifact that is being procured.
- Product string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
The version of the desired product/artifact.
- Name string
A user defined name of the 3rd Party Artifact that is being procured.
- Product string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
The version of the desired product/artifact.
- name String
A user defined name of the 3rd Party Artifact that is being procured.
- product String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
The version of the desired product/artifact.
- name string
A user defined name of the 3rd Party Artifact that is being procured.
- product string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code string A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
The version of the desired product/artifact.
- name str
A user defined name of the 3rd Party Artifact that is being procured.
- product str
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code str A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
The version of the desired product/artifact.
- name String
A user defined name of the 3rd Party Artifact that is being procured.
- product String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
The version of the desired product/artifact.
PlanResponse, PlanResponseArgs
- Name string
A user defined name of the 3rd Party Artifact that is being procured.
- Product string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
The version of the desired product/artifact.
- Name string
A user defined name of the 3rd Party Artifact that is being procured.
- Product string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- Promotion
Code string A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
The version of the desired product/artifact.
- name String
A user defined name of the 3rd Party Artifact that is being procured.
- product String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
The version of the desired product/artifact.
- name string
A user defined name of the 3rd Party Artifact that is being procured.
- product string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code string A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
The version of the desired product/artifact.
- name str
A user defined name of the 3rd Party Artifact that is being procured.
- product str
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_
code str A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
The version of the desired product/artifact.
- name String
A user defined name of the 3rd Party Artifact that is being procured.
- product String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion
Code String A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
The version of the desired product/artifact.
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- Resource
Identity Type System Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "System
Assigned" - SystemAssigned
Scope, ScopeArgs
- Cluster
Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Scope Cluster Specifies that the scope of the extension is Cluster
- Namespace
Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Scope Namespace Specifies that the scope of the extension is Namespace
- Cluster
Scope
Cluster Specifies that the scope of the extension is Cluster
- Namespace
Scope
Namespace Specifies that the scope of the extension is Namespace
- cluster
Scope
Cluster Specifies that the scope of the extension is Cluster
- namespace
Scope
Namespace Specifies that the scope of the extension is Namespace
- cluster
Scope
Cluster Specifies that the scope of the extension is Cluster
- namespace
Scope
Namespace Specifies that the scope of the extension is Namespace
- cluster
Scope
Cluster Specifies that the scope of the extension is Cluster
- namespace
Scope
Namespace Specifies that the scope of the extension is Namespace
- cluster Property Map
Specifies that the scope of the extension is Cluster
- namespace Property Map
Specifies that the scope of the extension is Namespace
ScopeCluster, ScopeClusterArgs
- Release
Namespace string Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- Release
Namespace string Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release
Namespace String Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release
Namespace string Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release_
namespace str Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release
Namespace String Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
ScopeClusterResponse, ScopeClusterResponseArgs
- Release
Namespace string Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- Release
Namespace string Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release
Namespace String Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release
Namespace string Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release_
namespace str Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
- release
Namespace String Namespace where the extension Release must be placed, for a Cluster scoped extension. If this namespace does not exist, it will be created
ScopeNamespace, ScopeNamespaceArgs
- Target
Namespace string Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- Target
Namespace string Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target
Namespace String Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target
Namespace string Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target_
namespace str Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target
Namespace String Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
ScopeNamespaceResponse, ScopeNamespaceResponseArgs
- Target
Namespace string Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- Target
Namespace string Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target
Namespace String Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target
Namespace string Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target_
namespace str Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
- target
Namespace String Namespace where the extension will be created for an Namespace scoped extension. If this namespace does not exist, it will be created
ScopeResponse, ScopeResponseArgs
- Cluster
Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Scope Cluster Response Specifies that the scope of the extension is Cluster
- Namespace
Pulumi.
Azure Native. Kubernetes Configuration. Inputs. Scope Namespace Response Specifies that the scope of the extension is Namespace
- Cluster
Scope
Cluster Response Specifies that the scope of the extension is Cluster
- Namespace
Scope
Namespace Response Specifies that the scope of the extension is Namespace
- cluster
Scope
Cluster Response Specifies that the scope of the extension is Cluster
- namespace
Scope
Namespace Response Specifies that the scope of the extension is Namespace
- cluster
Scope
Cluster Response Specifies that the scope of the extension is Cluster
- namespace
Scope
Namespace Response Specifies that the scope of the extension is Namespace
- cluster
Scope
Cluster Response Specifies that the scope of the extension is Cluster
- namespace
Scope
Namespace Response Specifies that the scope of the extension is Namespace
- cluster Property Map
Specifies that the scope of the extension is Cluster
- namespace Property Map
Specifies that the scope of the extension is Namespace
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:kubernetesconfiguration:Extension azureVote /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{clusterRp}/{clusterResourceName}/{clusterName}/providers/Microsoft.KubernetesConfiguration/extensions/{extensionName}
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0