azure-native.kubernetesconfiguration.FluxConfiguration
Explore with Pulumi AI
The Flux Configuration object returned in Get & Put response. API Version: 2021-11-01-preview.
Example Usage
Create Flux Configuration
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var fluxConfiguration = new AzureNative.KubernetesConfiguration.FluxConfiguration("fluxConfiguration", new()
    {
        ClusterName = "clusterName1",
        ClusterResourceName = "connectedClusters",
        ClusterRp = "Microsoft.Kubernetes",
        FluxConfigurationName = "srs-fluxconfig",
        GitRepository = new AzureNative.KubernetesConfiguration.Inputs.GitRepositoryDefinitionArgs
        {
            HttpsCAFile = "ZXhhbXBsZWNlcnRpZmljYXRl",
            RepositoryRef = new AzureNative.KubernetesConfiguration.Inputs.RepositoryRefDefinitionArgs
            {
                Branch = "master",
            },
            SyncIntervalInSeconds = 600,
            TimeoutInSeconds = 600,
            Url = "https://github.com/Azure/arc-k8s-demo",
        },
        Kustomizations = 
        {
            { "srs-kustomization1", new AzureNative.KubernetesConfiguration.Inputs.KustomizationDefinitionArgs
            {
                DependsOn = new[] {},
                Path = "./test/path",
                SyncIntervalInSeconds = 600,
                TimeoutInSeconds = 600,
                Validation = "none",
            } },
            { "srs-kustomization2", new AzureNative.KubernetesConfiguration.Inputs.KustomizationDefinitionArgs
            {
                DependsOn = new[]
                {
                    new AzureNative.KubernetesConfiguration.Inputs.DependsOnDefinitionArgs
                    {
                        KustomizationName = "srs-kustomization1",
                    },
                },
                Path = "./other/test/path",
                Prune = false,
                RetryIntervalInSeconds = 600,
                SyncIntervalInSeconds = 600,
                TimeoutInSeconds = 600,
                Validation = "none",
            } },
        },
        Namespace = "srs-namespace",
        ResourceGroupName = "rg1",
        Scope = "cluster",
        SourceKind = "GitRepository",
        Suspend = false,
    });
});
package main
import (
	kubernetesconfiguration "github.com/pulumi/pulumi-azure-native-sdk/kubernetesconfiguration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := kubernetesconfiguration.NewFluxConfiguration(ctx, "fluxConfiguration", &kubernetesconfiguration.FluxConfigurationArgs{
			ClusterName:           pulumi.String("clusterName1"),
			ClusterResourceName:   pulumi.String("connectedClusters"),
			ClusterRp:             pulumi.String("Microsoft.Kubernetes"),
			FluxConfigurationName: pulumi.String("srs-fluxconfig"),
			GitRepository: kubernetesconfiguration.GitRepositoryDefinitionResponse{
				HttpsCAFile: pulumi.String("ZXhhbXBsZWNlcnRpZmljYXRl"),
				RepositoryRef: &kubernetesconfiguration.RepositoryRefDefinitionArgs{
					Branch: pulumi.String("master"),
				},
				SyncIntervalInSeconds: pulumi.Float64(600),
				TimeoutInSeconds:      pulumi.Float64(600),
				Url:                   pulumi.String("https://github.com/Azure/arc-k8s-demo"),
			},
			Kustomizations: kubernetesconfiguration.KustomizationDefinitionMap{
				"srs-kustomization1": &kubernetesconfiguration.KustomizationDefinitionArgs{
					DependsOn:             kubernetesconfiguration.DependsOnDefinitionArray{},
					Path:                  pulumi.String("./test/path"),
					SyncIntervalInSeconds: pulumi.Float64(600),
					TimeoutInSeconds:      pulumi.Float64(600),
					Validation:            pulumi.String("none"),
				},
				"srs-kustomization2": &kubernetesconfiguration.KustomizationDefinitionArgs{
					DependsOn: kubernetesconfiguration.DependsOnDefinitionArray{
						&kubernetesconfiguration.DependsOnDefinitionArgs{
							KustomizationName: pulumi.String("srs-kustomization1"),
						},
					},
					Path:                   pulumi.String("./other/test/path"),
					Prune:                  pulumi.Bool(false),
					RetryIntervalInSeconds: pulumi.Float64(600),
					SyncIntervalInSeconds:  pulumi.Float64(600),
					TimeoutInSeconds:       pulumi.Float64(600),
					Validation:             pulumi.String("none"),
				},
			},
			Namespace:         pulumi.String("srs-namespace"),
			ResourceGroupName: pulumi.String("rg1"),
			Scope:             pulumi.String("cluster"),
			SourceKind:        pulumi.String("GitRepository"),
			Suspend:           pulumi.Bool(false),
		})
		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.FluxConfiguration;
import com.pulumi.azurenative.kubernetesconfiguration.FluxConfigurationArgs;
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 fluxConfiguration = new FluxConfiguration("fluxConfiguration", FluxConfigurationArgs.builder()        
            .clusterName("clusterName1")
            .clusterResourceName("connectedClusters")
            .clusterRp("Microsoft.Kubernetes")
            .fluxConfigurationName("srs-fluxconfig")
            .gitRepository(Map.ofEntries(
                Map.entry("httpsCAFile", "ZXhhbXBsZWNlcnRpZmljYXRl"),
                Map.entry("repositoryRef", Map.of("branch", "master")),
                Map.entry("syncIntervalInSeconds", 600),
                Map.entry("timeoutInSeconds", 600),
                Map.entry("url", "https://github.com/Azure/arc-k8s-demo")
            ))
            .kustomizations(Map.ofEntries(
                Map.entry("srs-kustomization1", Map.ofEntries(
                    Map.entry("dependsOn", ),
                    Map.entry("path", "./test/path"),
                    Map.entry("syncIntervalInSeconds", 600),
                    Map.entry("timeoutInSeconds", 600),
                    Map.entry("validation", "none")
                )),
                Map.entry("srs-kustomization2", Map.ofEntries(
                    Map.entry("dependsOn", Map.of("kustomizationName", "srs-kustomization1")),
                    Map.entry("path", "./other/test/path"),
                    Map.entry("prune", false),
                    Map.entry("retryIntervalInSeconds", 600),
                    Map.entry("syncIntervalInSeconds", 600),
                    Map.entry("timeoutInSeconds", 600),
                    Map.entry("validation", "none")
                ))
            ))
            .namespace("srs-namespace")
            .resourceGroupName("rg1")
            .scope("cluster")
            .sourceKind("GitRepository")
            .suspend(false)
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fluxConfiguration = new azure_native.kubernetesconfiguration.FluxConfiguration("fluxConfiguration", {
    clusterName: "clusterName1",
    clusterResourceName: "connectedClusters",
    clusterRp: "Microsoft.Kubernetes",
    fluxConfigurationName: "srs-fluxconfig",
    gitRepository: {
        httpsCAFile: "ZXhhbXBsZWNlcnRpZmljYXRl",
        repositoryRef: {
            branch: "master",
        },
        syncIntervalInSeconds: 600,
        timeoutInSeconds: 600,
        url: "https://github.com/Azure/arc-k8s-demo",
    },
    kustomizations: {
        "srs-kustomization1": {
            dependsOn: [],
            path: "./test/path",
            syncIntervalInSeconds: 600,
            timeoutInSeconds: 600,
            validation: "none",
        },
        "srs-kustomization2": {
            dependsOn: [{
                kustomizationName: "srs-kustomization1",
            }],
            path: "./other/test/path",
            prune: false,
            retryIntervalInSeconds: 600,
            syncIntervalInSeconds: 600,
            timeoutInSeconds: 600,
            validation: "none",
        },
    },
    namespace: "srs-namespace",
    resourceGroupName: "rg1",
    scope: "cluster",
    sourceKind: "GitRepository",
    suspend: false,
});
import pulumi
import pulumi_azure_native as azure_native
flux_configuration = azure_native.kubernetesconfiguration.FluxConfiguration("fluxConfiguration",
    cluster_name="clusterName1",
    cluster_resource_name="connectedClusters",
    cluster_rp="Microsoft.Kubernetes",
    flux_configuration_name="srs-fluxconfig",
    git_repository=azure_native.kubernetesconfiguration.GitRepositoryDefinitionResponseArgs(
        https_ca_file="ZXhhbXBsZWNlcnRpZmljYXRl",
        repository_ref=azure_native.kubernetesconfiguration.RepositoryRefDefinitionArgs(
            branch="master",
        ),
        sync_interval_in_seconds=600,
        timeout_in_seconds=600,
        url="https://github.com/Azure/arc-k8s-demo",
    ),
    kustomizations={
        "srs-kustomization1": azure_native.kubernetesconfiguration.KustomizationDefinitionArgs(
            depends_on=[],
            path="./test/path",
            sync_interval_in_seconds=600,
            timeout_in_seconds=600,
            validation="none",
        ),
        "srs-kustomization2": azure_native.kubernetesconfiguration.KustomizationDefinitionArgs(
            depends_on=[azure_native.kubernetesconfiguration.DependsOnDefinitionArgs(
                kustomization_name="srs-kustomization1",
            )],
            path="./other/test/path",
            prune=False,
            retry_interval_in_seconds=600,
            sync_interval_in_seconds=600,
            timeout_in_seconds=600,
            validation="none",
        ),
    },
    namespace="srs-namespace",
    resource_group_name="rg1",
    scope="cluster",
    source_kind="GitRepository",
    suspend=False)
resources:
  fluxConfiguration:
    type: azure-native:kubernetesconfiguration:FluxConfiguration
    properties:
      clusterName: clusterName1
      clusterResourceName: connectedClusters
      clusterRp: Microsoft.Kubernetes
      fluxConfigurationName: srs-fluxconfig
      gitRepository:
        httpsCAFile: ZXhhbXBsZWNlcnRpZmljYXRl
        repositoryRef:
          branch: master
        syncIntervalInSeconds: 600
        timeoutInSeconds: 600
        url: https://github.com/Azure/arc-k8s-demo
      kustomizations:
        srs-kustomization1:
          dependsOn: []
          path: ./test/path
          syncIntervalInSeconds: 600
          timeoutInSeconds: 600
          validation: none
        srs-kustomization2:
          dependsOn:
            - kustomizationName: srs-kustomization1
          path: ./other/test/path
          prune: false
          retryIntervalInSeconds: 600
          syncIntervalInSeconds: 600
          timeoutInSeconds: 600
          validation: none
      namespace: srs-namespace
      resourceGroupName: rg1
      scope: cluster
      sourceKind: GitRepository
      suspend: false
Create FluxConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FluxConfiguration(name: string, args: FluxConfigurationArgs, opts?: CustomResourceOptions);@overload
def FluxConfiguration(resource_name: str,
                      args: FluxConfigurationArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def FluxConfiguration(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      cluster_name: Optional[str] = None,
                      cluster_resource_name: Optional[str] = None,
                      cluster_rp: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      configuration_protected_settings: Optional[Mapping[str, str]] = None,
                      flux_configuration_name: Optional[str] = None,
                      git_repository: Optional[GitRepositoryDefinitionArgs] = None,
                      kustomizations: Optional[Mapping[str, KustomizationDefinitionArgs]] = None,
                      namespace: Optional[str] = None,
                      scope: Optional[Union[str, ScopeType]] = None,
                      source_kind: Optional[Union[str, SourceKindType]] = None,
                      suspend: Optional[bool] = None)func NewFluxConfiguration(ctx *Context, name string, args FluxConfigurationArgs, opts ...ResourceOption) (*FluxConfiguration, error)public FluxConfiguration(string name, FluxConfigurationArgs args, CustomResourceOptions? opts = null)
public FluxConfiguration(String name, FluxConfigurationArgs args)
public FluxConfiguration(String name, FluxConfigurationArgs args, CustomResourceOptions options)
type: azure-native:kubernetesconfiguration:FluxConfiguration
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 FluxConfigurationArgs
- 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 FluxConfigurationArgs
- 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 FluxConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FluxConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FluxConfigurationArgs
- 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 fluxConfigurationResource = new AzureNative.Kubernetesconfiguration.FluxConfiguration("fluxConfigurationResource", new()
{
    ClusterName = "string",
    ClusterResourceName = "string",
    ClusterRp = "string",
    ResourceGroupName = "string",
    ConfigurationProtectedSettings = 
    {
        { "string", "string" },
    },
    FluxConfigurationName = "string",
    GitRepository = 
    {
        { "httpsCAFile", "string" },
        { "httpsUser", "string" },
        { "localAuthRef", "string" },
        { "repositoryRef", 
        {
            { "branch", "string" },
            { "commit", "string" },
            { "semver", "string" },
            { "tag", "string" },
        } },
        { "sshKnownHosts", "string" },
        { "syncIntervalInSeconds", 0 },
        { "timeoutInSeconds", 0 },
        { "url", "string" },
    },
    Kustomizations = 
    {
        { "string", 
        {
            { "dependsOn", new[]
            {
                
                {
                    { "kustomizationName", "string" },
                },
            } },
            { "force", false },
            { "path", "string" },
            { "prune", false },
            { "retryIntervalInSeconds", 0 },
            { "syncIntervalInSeconds", 0 },
            { "timeoutInSeconds", 0 },
            { "validation", "string" },
        } },
    },
    Namespace = "string",
    Scope = "string",
    SourceKind = "string",
    Suspend = false,
});
example, err := kubernetesconfiguration.NewFluxConfiguration(ctx, "fluxConfigurationResource", &kubernetesconfiguration.FluxConfigurationArgs{
	ClusterName:         "string",
	ClusterResourceName: "string",
	ClusterRp:           "string",
	ResourceGroupName:   "string",
	ConfigurationProtectedSettings: map[string]interface{}{
		"string": "string",
	},
	FluxConfigurationName: "string",
	GitRepository: map[string]interface{}{
		"httpsCAFile":  "string",
		"httpsUser":    "string",
		"localAuthRef": "string",
		"repositoryRef": map[string]interface{}{
			"branch": "string",
			"commit": "string",
			"semver": "string",
			"tag":    "string",
		},
		"sshKnownHosts":         "string",
		"syncIntervalInSeconds": 0,
		"timeoutInSeconds":      0,
		"url":                   "string",
	},
	Kustomizations: map[string]interface{}{
		"string": map[string]interface{}{
			"dependsOn": []map[string]interface{}{
				map[string]interface{}{
					"kustomizationName": "string",
				},
			},
			"force":                  false,
			"path":                   "string",
			"prune":                  false,
			"retryIntervalInSeconds": 0,
			"syncIntervalInSeconds":  0,
			"timeoutInSeconds":       0,
			"validation":             "string",
		},
	},
	Namespace:  "string",
	Scope:      "string",
	SourceKind: "string",
	Suspend:    false,
})
var fluxConfigurationResource = new FluxConfiguration("fluxConfigurationResource", FluxConfigurationArgs.builder()
    .clusterName("string")
    .clusterResourceName("string")
    .clusterRp("string")
    .resourceGroupName("string")
    .configurationProtectedSettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .fluxConfigurationName("string")
    .gitRepository(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .kustomizations(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .namespace("string")
    .scope("string")
    .sourceKind("string")
    .suspend(false)
    .build());
flux_configuration_resource = azure_native.kubernetesconfiguration.FluxConfiguration("fluxConfigurationResource",
    cluster_name=string,
    cluster_resource_name=string,
    cluster_rp=string,
    resource_group_name=string,
    configuration_protected_settings={
        string: string,
    },
    flux_configuration_name=string,
    git_repository={
        httpsCAFile: string,
        httpsUser: string,
        localAuthRef: string,
        repositoryRef: {
            branch: string,
            commit: string,
            semver: string,
            tag: string,
        },
        sshKnownHosts: string,
        syncIntervalInSeconds: 0,
        timeoutInSeconds: 0,
        url: string,
    },
    kustomizations={
        string: {
            dependsOn: [{
                kustomizationName: string,
            }],
            force: False,
            path: string,
            prune: False,
            retryIntervalInSeconds: 0,
            syncIntervalInSeconds: 0,
            timeoutInSeconds: 0,
            validation: string,
        },
    },
    namespace=string,
    scope=string,
    source_kind=string,
    suspend=False)
const fluxConfigurationResource = new azure_native.kubernetesconfiguration.FluxConfiguration("fluxConfigurationResource", {
    clusterName: "string",
    clusterResourceName: "string",
    clusterRp: "string",
    resourceGroupName: "string",
    configurationProtectedSettings: {
        string: "string",
    },
    fluxConfigurationName: "string",
    gitRepository: {
        httpsCAFile: "string",
        httpsUser: "string",
        localAuthRef: "string",
        repositoryRef: {
            branch: "string",
            commit: "string",
            semver: "string",
            tag: "string",
        },
        sshKnownHosts: "string",
        syncIntervalInSeconds: 0,
        timeoutInSeconds: 0,
        url: "string",
    },
    kustomizations: {
        string: {
            dependsOn: [{
                kustomizationName: "string",
            }],
            force: false,
            path: "string",
            prune: false,
            retryIntervalInSeconds: 0,
            syncIntervalInSeconds: 0,
            timeoutInSeconds: 0,
            validation: "string",
        },
    },
    namespace: "string",
    scope: "string",
    sourceKind: "string",
    suspend: false,
});
type: azure-native:kubernetesconfiguration:FluxConfiguration
properties:
    clusterName: string
    clusterResourceName: string
    clusterRp: string
    configurationProtectedSettings:
        string: string
    fluxConfigurationName: string
    gitRepository:
        httpsCAFile: string
        httpsUser: string
        localAuthRef: string
        repositoryRef:
            branch: string
            commit: string
            semver: string
            tag: string
        sshKnownHosts: string
        syncIntervalInSeconds: 0
        timeoutInSeconds: 0
        url: string
    kustomizations:
        string:
            dependsOn:
                - kustomizationName: string
            force: false
            path: string
            prune: false
            retryIntervalInSeconds: 0
            syncIntervalInSeconds: 0
            timeoutInSeconds: 0
            validation: string
    namespace: string
    resourceGroupName: string
    scope: string
    sourceKind: string
    suspend: false
FluxConfiguration 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 FluxConfiguration resource accepts the following input properties:
- ClusterName string
- The name of the kubernetes cluster.
- ClusterResource stringName 
- The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).
- ClusterRp string
- The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConfigurationProtected Dictionary<string, string>Settings 
- Key-value pairs of protected configuration settings for the configuration
- FluxConfiguration stringName 
- Name of the Flux Configuration.
- GitRepository Pulumi.Azure Native. Kubernetes Configuration. Inputs. Git Repository Definition 
- Parameters to reconcile to the GitRepository source kind type.
- Kustomizations
Dictionary<string, Pulumi.Azure Native. Kubernetes Configuration. Inputs. Kustomization Definition Args> 
- Array of kustomizations used to reconcile the artifact pulled by the source type on the cluster.
- Namespace string
- The namespace to which this configuration is installed to. Maximum of 253 lower case alphanumeric characters, hyphen and period only.
- Scope
string | Pulumi.Azure Native. Kubernetes Configuration. Scope Type 
- Scope at which the operator will be installed.
- SourceKind string | Pulumi.Azure Native. Kubernetes Configuration. Source Kind Type 
- Source Kind to pull the configuration data from.
- Suspend bool
- Whether this configuration should suspend its reconciliation of its kustomizations and sources.
- ClusterName string
- The name of the kubernetes cluster.
- ClusterResource stringName 
- The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).
- ClusterRp string
- The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConfigurationProtected map[string]stringSettings 
- Key-value pairs of protected configuration settings for the configuration
- FluxConfiguration stringName 
- Name of the Flux Configuration.
- GitRepository GitRepository Definition Args 
- Parameters to reconcile to the GitRepository source kind type.
- Kustomizations
map[string]KustomizationDefinition Args 
- Array of kustomizations used to reconcile the artifact pulled by the source type on the cluster.
- Namespace string
- The namespace to which this configuration is installed to. Maximum of 253 lower case alphanumeric characters, hyphen and period only.
- Scope
string | ScopeType 
- Scope at which the operator will be installed.
- SourceKind string | SourceKind Type 
- Source Kind to pull the configuration data from.
- Suspend bool
- Whether this configuration should suspend its reconciliation of its kustomizations and sources.
- clusterName String
- The name of the kubernetes cluster.
- clusterResource StringName 
- The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).
- clusterRp String
- The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- configurationProtected Map<String,String>Settings 
- Key-value pairs of protected configuration settings for the configuration
- fluxConfiguration StringName 
- Name of the Flux Configuration.
- gitRepository GitRepository Definition 
- Parameters to reconcile to the GitRepository source kind type.
- kustomizations
Map<String,KustomizationDefinition Args> 
- Array of kustomizations used to reconcile the artifact pulled by the source type on the cluster.
- namespace String
- The namespace to which this configuration is installed to. Maximum of 253 lower case alphanumeric characters, hyphen and period only.
- scope
String | ScopeType 
- Scope at which the operator will be installed.
- sourceKind String | SourceKind Type 
- Source Kind to pull the configuration data from.
- suspend Boolean
- Whether this configuration should suspend its reconciliation of its kustomizations and sources.
- clusterName string
- The name of the kubernetes cluster.
- clusterResource stringName 
- The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).
- clusterRp string
- The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- configurationProtected {[key: string]: string}Settings 
- Key-value pairs of protected configuration settings for the configuration
- fluxConfiguration stringName 
- Name of the Flux Configuration.
- gitRepository GitRepository Definition 
- Parameters to reconcile to the GitRepository source kind type.
- kustomizations
{[key: string]: KustomizationDefinition Args} 
- Array of kustomizations used to reconcile the artifact pulled by the source type on the cluster.
- namespace string
- The namespace to which this configuration is installed to. Maximum of 253 lower case alphanumeric characters, hyphen and period only.
- scope
string | ScopeType 
- Scope at which the operator will be installed.
- sourceKind string | SourceKind Type 
- Source Kind to pull the configuration data from.
- suspend boolean
- Whether this configuration should suspend its reconciliation of its kustomizations and sources.
- cluster_name str
- The name of the kubernetes cluster.
- cluster_resource_ strname 
- The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).
- cluster_rp str
- The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- configuration_protected_ Mapping[str, str]settings 
- Key-value pairs of protected configuration settings for the configuration
- flux_configuration_ strname 
- Name of the Flux Configuration.
- git_repository GitRepository Definition Args 
- Parameters to reconcile to the GitRepository source kind type.
- kustomizations
Mapping[str, KustomizationDefinition Args] 
- Array of kustomizations used to reconcile the artifact pulled by the source type on the cluster.
- namespace str
- The namespace to which this configuration is installed to. Maximum of 253 lower case alphanumeric characters, hyphen and period only.
- scope
str | ScopeType 
- Scope at which the operator will be installed.
- source_kind str | SourceKind Type 
- Source Kind to pull the configuration data from.
- suspend bool
- Whether this configuration should suspend its reconciliation of its kustomizations and sources.
- clusterName String
- The name of the kubernetes cluster.
- clusterResource StringName 
- The Kubernetes cluster resource name - either managedClusters (for AKS clusters) or connectedClusters (for OnPrem K8S clusters).
- clusterRp String
- The Kubernetes cluster RP - either Microsoft.ContainerService (for AKS clusters) or Microsoft.Kubernetes (for OnPrem K8S clusters).
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- configurationProtected Map<String>Settings 
- Key-value pairs of protected configuration settings for the configuration
- fluxConfiguration StringName 
- Name of the Flux Configuration.
- gitRepository Property Map
- Parameters to reconcile to the GitRepository source kind type.
- kustomizations Map<Property Map>
- Array of kustomizations used to reconcile the artifact pulled by the source type on the cluster.
- namespace String
- The namespace to which this configuration is installed to. Maximum of 253 lower case alphanumeric characters, hyphen and period only.
- scope String | "cluster" | "namespace"
- Scope at which the operator will be installed.
- sourceKind String | "GitRepository" 
- Source Kind to pull the configuration data from.
- suspend Boolean
- Whether this configuration should suspend its reconciliation of its kustomizations and sources.
Outputs
All input properties are implicitly available as output properties. Additionally, the FluxConfiguration resource produces the following output properties:
- ComplianceState string
- Combined status of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects.
- ErrorMessage string
- Error message returned to the user in the case of provisioning failure.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastSource stringSynced At 
- Datetime the fluxConfiguration last synced its source on the cluster.
- LastSource stringSynced Commit Id 
- Branch and SHA of the last source commit synced with the cluster.
- Name string
- The name of the resource
- ProvisioningState string
- Status of the creation of the fluxConfiguration.
- RepositoryPublic stringKey 
- Public Key associated with this fluxConfiguration (either generated within the cluster or provided by the user).
- Statuses
List<Pulumi.Azure Native. Kubernetes Configuration. Outputs. Object Status Definition Response> 
- Statuses of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects provisioned by the fluxConfiguration.
- SystemData 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"
- ComplianceState string
- Combined status of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects.
- ErrorMessage string
- Error message returned to the user in the case of provisioning failure.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastSource stringSynced At 
- Datetime the fluxConfiguration last synced its source on the cluster.
- LastSource stringSynced Commit Id 
- Branch and SHA of the last source commit synced with the cluster.
- Name string
- The name of the resource
- ProvisioningState string
- Status of the creation of the fluxConfiguration.
- RepositoryPublic stringKey 
- Public Key associated with this fluxConfiguration (either generated within the cluster or provided by the user).
- Statuses
[]ObjectStatus Definition Response 
- Statuses of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects provisioned by the fluxConfiguration.
- SystemData 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"
- complianceState String
- Combined status of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects.
- errorMessage String
- Error message returned to the user in the case of provisioning failure.
- id String
- The provider-assigned unique ID for this managed resource.
- lastSource StringSynced At 
- Datetime the fluxConfiguration last synced its source on the cluster.
- lastSource StringSynced Commit Id 
- Branch and SHA of the last source commit synced with the cluster.
- name String
- The name of the resource
- provisioningState String
- Status of the creation of the fluxConfiguration.
- repositoryPublic StringKey 
- Public Key associated with this fluxConfiguration (either generated within the cluster or provided by the user).
- statuses
List<ObjectStatus Definition Response> 
- Statuses of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects provisioned by the fluxConfiguration.
- systemData 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"
- complianceState string
- Combined status of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects.
- errorMessage string
- Error message returned to the user in the case of provisioning failure.
- id string
- The provider-assigned unique ID for this managed resource.
- lastSource stringSynced At 
- Datetime the fluxConfiguration last synced its source on the cluster.
- lastSource stringSynced Commit Id 
- Branch and SHA of the last source commit synced with the cluster.
- name string
- The name of the resource
- provisioningState string
- Status of the creation of the fluxConfiguration.
- repositoryPublic stringKey 
- Public Key associated with this fluxConfiguration (either generated within the cluster or provided by the user).
- statuses
ObjectStatus Definition Response[] 
- Statuses of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects provisioned by the fluxConfiguration.
- systemData 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"
- compliance_state str
- Combined status of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects.
- error_message str
- Error message returned to the user in the case of provisioning failure.
- id str
- The provider-assigned unique ID for this managed resource.
- last_source_ strsynced_ at 
- Datetime the fluxConfiguration last synced its source on the cluster.
- last_source_ strsynced_ commit_ id 
- Branch and SHA of the last source commit synced with the cluster.
- name str
- The name of the resource
- provisioning_state str
- Status of the creation of the fluxConfiguration.
- repository_public_ strkey 
- Public Key associated with this fluxConfiguration (either generated within the cluster or provided by the user).
- statuses
Sequence[ObjectStatus Definition Response] 
- Statuses of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects provisioned by the fluxConfiguration.
- 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"
- complianceState String
- Combined status of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects.
- errorMessage String
- Error message returned to the user in the case of provisioning failure.
- id String
- The provider-assigned unique ID for this managed resource.
- lastSource StringSynced At 
- Datetime the fluxConfiguration last synced its source on the cluster.
- lastSource StringSynced Commit Id 
- Branch and SHA of the last source commit synced with the cluster.
- name String
- The name of the resource
- provisioningState String
- Status of the creation of the fluxConfiguration.
- repositoryPublic StringKey 
- Public Key associated with this fluxConfiguration (either generated within the cluster or provided by the user).
- statuses List<Property Map>
- Statuses of the Flux Kubernetes resources created by the fluxConfiguration or created by the managed objects provisioned by the fluxConfiguration.
- systemData 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
DependsOnDefinition, DependsOnDefinitionArgs      
- KustomizationName string
- Name of the kustomization to claim dependency on
- KustomizationName string
- Name of the kustomization to claim dependency on
- kustomizationName String
- Name of the kustomization to claim dependency on
- kustomizationName string
- Name of the kustomization to claim dependency on
- kustomization_name str
- Name of the kustomization to claim dependency on
- kustomizationName String
- Name of the kustomization to claim dependency on
DependsOnDefinitionResponse, DependsOnDefinitionResponseArgs        
- KustomizationName string
- Name of the kustomization to claim dependency on
- KustomizationName string
- Name of the kustomization to claim dependency on
- kustomizationName String
- Name of the kustomization to claim dependency on
- kustomizationName string
- Name of the kustomization to claim dependency on
- kustomization_name str
- Name of the kustomization to claim dependency on
- kustomizationName String
- Name of the kustomization to claim dependency on
GitRepositoryDefinition, GitRepositoryDefinitionArgs      
- HttpsCAFile string
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- HttpsUser string
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- LocalAuth stringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- RepositoryRef Pulumi.Azure Native. Kubernetes Configuration. Inputs. Repository Ref Definition 
- The source reference for the GitRepository object.
- SshKnown stringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- SyncInterval doubleIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- TimeoutIn doubleSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- Url string
- The URL to sync for the flux configuration git repository.
- HttpsCAFile string
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- HttpsUser string
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- LocalAuth stringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- RepositoryRef RepositoryRef Definition 
- The source reference for the GitRepository object.
- SshKnown stringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- SyncInterval float64In Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- TimeoutIn float64Seconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- Url string
- The URL to sync for the flux configuration git repository.
- httpsCAFile String
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- httpsUser String
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- localAuth StringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repositoryRef RepositoryRef Definition 
- The source reference for the GitRepository object.
- sshKnown StringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- syncInterval DoubleIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeoutIn DoubleSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url String
- The URL to sync for the flux configuration git repository.
- httpsCAFile string
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- httpsUser string
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- localAuth stringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repositoryRef RepositoryRef Definition 
- The source reference for the GitRepository object.
- sshKnown stringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- syncInterval numberIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeoutIn numberSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url string
- The URL to sync for the flux configuration git repository.
- https_ca_ strfile 
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- https_user str
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- local_auth_ strref 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repository_ref RepositoryRef Definition 
- The source reference for the GitRepository object.
- ssh_known_ strhosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- sync_interval_ floatin_ seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeout_in_ floatseconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url str
- The URL to sync for the flux configuration git repository.
- httpsCAFile String
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- httpsUser String
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- localAuth StringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repositoryRef Property Map
- The source reference for the GitRepository object.
- sshKnown StringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- syncInterval NumberIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeoutIn NumberSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url String
- The URL to sync for the flux configuration git repository.
GitRepositoryDefinitionResponse, GitRepositoryDefinitionResponseArgs        
- HttpsCAFile string
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- HttpsUser string
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- LocalAuth stringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- RepositoryRef Pulumi.Azure Native. Kubernetes Configuration. Inputs. Repository Ref Definition Response 
- The source reference for the GitRepository object.
- SshKnown stringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- SyncInterval doubleIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- TimeoutIn doubleSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- Url string
- The URL to sync for the flux configuration git repository.
- HttpsCAFile string
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- HttpsUser string
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- LocalAuth stringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- RepositoryRef RepositoryRef Definition Response 
- The source reference for the GitRepository object.
- SshKnown stringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- SyncInterval float64In Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- TimeoutIn float64Seconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- Url string
- The URL to sync for the flux configuration git repository.
- httpsCAFile String
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- httpsUser String
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- localAuth StringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repositoryRef RepositoryRef Definition Response 
- The source reference for the GitRepository object.
- sshKnown StringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- syncInterval DoubleIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeoutIn DoubleSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url String
- The URL to sync for the flux configuration git repository.
- httpsCAFile string
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- httpsUser string
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- localAuth stringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repositoryRef RepositoryRef Definition Response 
- The source reference for the GitRepository object.
- sshKnown stringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- syncInterval numberIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeoutIn numberSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url string
- The URL to sync for the flux configuration git repository.
- https_ca_ strfile 
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- https_user str
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- local_auth_ strref 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repository_ref RepositoryRef Definition Response 
- The source reference for the GitRepository object.
- ssh_known_ strhosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- sync_interval_ floatin_ seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeout_in_ floatseconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url str
- The URL to sync for the flux configuration git repository.
- httpsCAFile String
- Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS
- httpsUser String
- Base64-encoded HTTPS username used to access private git repositories over HTTPS
- localAuth StringRef 
- Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.
- repositoryRef Property Map
- The source reference for the GitRepository object.
- sshKnown StringHosts 
- Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH
- syncInterval NumberIn Seconds 
- The interval at which to re-reconcile the cluster git repository source with the remote.
- timeoutIn NumberSeconds 
- The maximum time to attempt to reconcile the cluster git repository source with the remote.
- url String
- The URL to sync for the flux configuration git repository.
HelmReleasePropertiesDefinitionResponse, HelmReleasePropertiesDefinitionResponseArgs          
- FailureCount double
- Total number of times that the HelmRelease failed to install or upgrade
- HelmChart Pulumi.Ref Azure Native. Kubernetes Configuration. Inputs. Object Reference Definition Response 
- The reference to the HelmChart object used as the source to this HelmRelease
- InstallFailure doubleCount 
- Number of times that the HelmRelease failed to install
- LastRevision doubleApplied 
- The revision number of the last released object change
- UpgradeFailure doubleCount 
- Number of times that the HelmRelease failed to upgrade
- FailureCount float64
- Total number of times that the HelmRelease failed to install or upgrade
- HelmChart ObjectRef Reference Definition Response 
- The reference to the HelmChart object used as the source to this HelmRelease
- InstallFailure float64Count 
- Number of times that the HelmRelease failed to install
- LastRevision float64Applied 
- The revision number of the last released object change
- UpgradeFailure float64Count 
- Number of times that the HelmRelease failed to upgrade
- failureCount Double
- Total number of times that the HelmRelease failed to install or upgrade
- helmChart ObjectRef Reference Definition Response 
- The reference to the HelmChart object used as the source to this HelmRelease
- installFailure DoubleCount 
- Number of times that the HelmRelease failed to install
- lastRevision DoubleApplied 
- The revision number of the last released object change
- upgradeFailure DoubleCount 
- Number of times that the HelmRelease failed to upgrade
- failureCount number
- Total number of times that the HelmRelease failed to install or upgrade
- helmChart ObjectRef Reference Definition Response 
- The reference to the HelmChart object used as the source to this HelmRelease
- installFailure numberCount 
- Number of times that the HelmRelease failed to install
- lastRevision numberApplied 
- The revision number of the last released object change
- upgradeFailure numberCount 
- Number of times that the HelmRelease failed to upgrade
- failure_count float
- Total number of times that the HelmRelease failed to install or upgrade
- helm_chart_ Objectref Reference Definition Response 
- The reference to the HelmChart object used as the source to this HelmRelease
- install_failure_ floatcount 
- Number of times that the HelmRelease failed to install
- last_revision_ floatapplied 
- The revision number of the last released object change
- upgrade_failure_ floatcount 
- Number of times that the HelmRelease failed to upgrade
- failureCount Number
- Total number of times that the HelmRelease failed to install or upgrade
- helmChart Property MapRef 
- The reference to the HelmChart object used as the source to this HelmRelease
- installFailure NumberCount 
- Number of times that the HelmRelease failed to install
- lastRevision NumberApplied 
- The revision number of the last released object change
- upgradeFailure NumberCount 
- Number of times that the HelmRelease failed to upgrade
KustomizationDefinition, KustomizationDefinitionArgs    
- DependsOn List<Pulumi.Azure Native. Kubernetes Configuration. Inputs. Depends On Definition> 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- Force bool
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- Path string
- The path in the source reference to reconcile on the cluster.
- Prune bool
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- RetryInterval doubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- SyncInterval doubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- TimeoutIn doubleSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- Validation
string | Pulumi.Azure Native. Kubernetes Configuration. Kustomization Validation Type 
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- DependsOn []DependsOn Definition 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- Force bool
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- Path string
- The path in the source reference to reconcile on the cluster.
- Prune bool
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- RetryInterval float64In Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- SyncInterval float64In Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- TimeoutIn float64Seconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- Validation
string | KustomizationValidation Type 
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- dependsOn List<DependsOn Definition> 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force Boolean
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path String
- The path in the source reference to reconcile on the cluster.
- prune Boolean
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retryInterval DoubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- syncInterval DoubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeoutIn DoubleSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation
String | KustomizationValidation Type 
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- dependsOn DependsOn Definition[] 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force boolean
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path string
- The path in the source reference to reconcile on the cluster.
- prune boolean
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retryInterval numberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- syncInterval numberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeoutIn numberSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation
string | KustomizationValidation Type 
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- depends_on Sequence[DependsOn Definition] 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force bool
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path str
- The path in the source reference to reconcile on the cluster.
- prune bool
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retry_interval_ floatin_ seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- sync_interval_ floatin_ seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeout_in_ floatseconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation
str | KustomizationValidation Type 
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- dependsOn List<Property Map>
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force Boolean
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path String
- The path in the source reference to reconcile on the cluster.
- prune Boolean
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retryInterval NumberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- syncInterval NumberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeoutIn NumberSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation String | "none" | "client" | "server"
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
KustomizationDefinitionResponse, KustomizationDefinitionResponseArgs      
- DependsOn List<Pulumi.Azure Native. Kubernetes Configuration. Inputs. Depends On Definition Response> 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- Force bool
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- Path string
- The path in the source reference to reconcile on the cluster.
- Prune bool
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- RetryInterval doubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- SyncInterval doubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- TimeoutIn doubleSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- Validation string
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- DependsOn []DependsOn Definition Response 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- Force bool
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- Path string
- The path in the source reference to reconcile on the cluster.
- Prune bool
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- RetryInterval float64In Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- SyncInterval float64In Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- TimeoutIn float64Seconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- Validation string
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- dependsOn List<DependsOn Definition Response> 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force Boolean
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path String
- The path in the source reference to reconcile on the cluster.
- prune Boolean
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retryInterval DoubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- syncInterval DoubleIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeoutIn DoubleSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation String
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- dependsOn DependsOn Definition Response[] 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force boolean
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path string
- The path in the source reference to reconcile on the cluster.
- prune boolean
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retryInterval numberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- syncInterval numberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeoutIn numberSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation string
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- depends_on Sequence[DependsOn Definition Response] 
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force bool
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path str
- The path in the source reference to reconcile on the cluster.
- prune bool
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retry_interval_ floatin_ seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- sync_interval_ floatin_ seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeout_in_ floatseconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation str
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
- dependsOn List<Property Map>
- Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
- force Boolean
- Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
- path String
- The path in the source reference to reconcile on the cluster.
- prune Boolean
- Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
- retryInterval NumberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
- syncInterval NumberIn Seconds 
- The interval at which to re-reconcile the Kustomization on the cluster.
- timeoutIn NumberSeconds 
- The maximum time to attempt to reconcile the Kustomization on the cluster.
- validation String
- Specify whether to validate the Kubernetes objects referenced in the Kustomization before applying them to the cluster.
KustomizationValidationType, KustomizationValidationTypeArgs      
- None
- none
- Client
- client
- Server
- server
- KustomizationValidation Type None 
- none
- KustomizationValidation Type Client 
- client
- KustomizationValidation Type Server 
- server
- None
- none
- Client
- client
- Server
- server
- None
- none
- Client
- client
- Server
- server
- NONE
- none
- CLIENT
- client
- SERVER
- server
- "none"
- none
- "client"
- client
- "server"
- server
ObjectReferenceDefinitionResponse, ObjectReferenceDefinitionResponseArgs        
ObjectStatusConditionDefinitionResponse, ObjectStatusConditionDefinitionResponseArgs          
- LastTransition stringTime 
- Last time this status condition has changed
- Message string
- A more verbose description of the object status condition
- Reason string
- Reason for the specified status condition type status
- Status string
- Status of the Kubernetes object condition type
- Type string
- Object status condition type for this object
- LastTransition stringTime 
- Last time this status condition has changed
- Message string
- A more verbose description of the object status condition
- Reason string
- Reason for the specified status condition type status
- Status string
- Status of the Kubernetes object condition type
- Type string
- Object status condition type for this object
- lastTransition StringTime 
- Last time this status condition has changed
- message String
- A more verbose description of the object status condition
- reason String
- Reason for the specified status condition type status
- status String
- Status of the Kubernetes object condition type
- type String
- Object status condition type for this object
- lastTransition stringTime 
- Last time this status condition has changed
- message string
- A more verbose description of the object status condition
- reason string
- Reason for the specified status condition type status
- status string
- Status of the Kubernetes object condition type
- type string
- Object status condition type for this object
- last_transition_ strtime 
- Last time this status condition has changed
- message str
- A more verbose description of the object status condition
- reason str
- Reason for the specified status condition type status
- status str
- Status of the Kubernetes object condition type
- type str
- Object status condition type for this object
- lastTransition StringTime 
- Last time this status condition has changed
- message String
- A more verbose description of the object status condition
- reason String
- Reason for the specified status condition type status
- status String
- Status of the Kubernetes object condition type
- type String
- Object status condition type for this object
ObjectStatusDefinitionResponse, ObjectStatusDefinitionResponseArgs        
- AppliedBy Pulumi.Azure Native. Kubernetes Configuration. Inputs. Object Reference Definition Response 
- Object reference to the Kustomization that applied this object
- ComplianceState string
- Compliance state of the applied object showing whether the applied object has come into a ready state on the cluster.
- HelmRelease Pulumi.Properties Azure Native. Kubernetes Configuration. Inputs. Helm Release Properties Definition Response 
- Additional properties that are provided from objects of the HelmRelease kind
- Kind string
- Kind of the applied object
- Name string
- Name of the applied object
- Namespace string
- Namespace of the applied object
- StatusConditions List<Pulumi.Azure Native. Kubernetes Configuration. Inputs. Object Status Condition Definition Response> 
- List of Kubernetes object status conditions present on the cluster
- AppliedBy ObjectReference Definition Response 
- Object reference to the Kustomization that applied this object
- ComplianceState string
- Compliance state of the applied object showing whether the applied object has come into a ready state on the cluster.
- HelmRelease HelmProperties Release Properties Definition Response 
- Additional properties that are provided from objects of the HelmRelease kind
- Kind string
- Kind of the applied object
- Name string
- Name of the applied object
- Namespace string
- Namespace of the applied object
- StatusConditions []ObjectStatus Condition Definition Response 
- List of Kubernetes object status conditions present on the cluster
- appliedBy ObjectReference Definition Response 
- Object reference to the Kustomization that applied this object
- complianceState String
- Compliance state of the applied object showing whether the applied object has come into a ready state on the cluster.
- helmRelease HelmProperties Release Properties Definition Response 
- Additional properties that are provided from objects of the HelmRelease kind
- kind String
- Kind of the applied object
- name String
- Name of the applied object
- namespace String
- Namespace of the applied object
- statusConditions List<ObjectStatus Condition Definition Response> 
- List of Kubernetes object status conditions present on the cluster
- appliedBy ObjectReference Definition Response 
- Object reference to the Kustomization that applied this object
- complianceState string
- Compliance state of the applied object showing whether the applied object has come into a ready state on the cluster.
- helmRelease HelmProperties Release Properties Definition Response 
- Additional properties that are provided from objects of the HelmRelease kind
- kind string
- Kind of the applied object
- name string
- Name of the applied object
- namespace string
- Namespace of the applied object
- statusConditions ObjectStatus Condition Definition Response[] 
- List of Kubernetes object status conditions present on the cluster
- applied_by ObjectReference Definition Response 
- Object reference to the Kustomization that applied this object
- compliance_state str
- Compliance state of the applied object showing whether the applied object has come into a ready state on the cluster.
- helm_release_ Helmproperties Release Properties Definition Response 
- Additional properties that are provided from objects of the HelmRelease kind
- kind str
- Kind of the applied object
- name str
- Name of the applied object
- namespace str
- Namespace of the applied object
- status_conditions Sequence[ObjectStatus Condition Definition Response] 
- List of Kubernetes object status conditions present on the cluster
- appliedBy Property Map
- Object reference to the Kustomization that applied this object
- complianceState String
- Compliance state of the applied object showing whether the applied object has come into a ready state on the cluster.
- helmRelease Property MapProperties 
- Additional properties that are provided from objects of the HelmRelease kind
- kind String
- Kind of the applied object
- name String
- Name of the applied object
- namespace String
- Namespace of the applied object
- statusConditions List<Property Map>
- List of Kubernetes object status conditions present on the cluster
RepositoryRefDefinition, RepositoryRefDefinitionArgs      
- Branch string
- The git repository branch name to checkout.
- Commit string
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- Semver string
- The semver range used to match against git repository tags. This takes precedence over tag.
- Tag string
- The git repository tag name to checkout. This takes precedence over branch.
- Branch string
- The git repository branch name to checkout.
- Commit string
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- Semver string
- The semver range used to match against git repository tags. This takes precedence over tag.
- Tag string
- The git repository tag name to checkout. This takes precedence over branch.
- branch String
- The git repository branch name to checkout.
- commit String
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver String
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag String
- The git repository tag name to checkout. This takes precedence over branch.
- branch string
- The git repository branch name to checkout.
- commit string
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver string
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag string
- The git repository tag name to checkout. This takes precedence over branch.
- branch str
- The git repository branch name to checkout.
- commit str
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver str
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag str
- The git repository tag name to checkout. This takes precedence over branch.
- branch String
- The git repository branch name to checkout.
- commit String
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver String
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag String
- The git repository tag name to checkout. This takes precedence over branch.
RepositoryRefDefinitionResponse, RepositoryRefDefinitionResponseArgs        
- Branch string
- The git repository branch name to checkout.
- Commit string
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- Semver string
- The semver range used to match against git repository tags. This takes precedence over tag.
- Tag string
- The git repository tag name to checkout. This takes precedence over branch.
- Branch string
- The git repository branch name to checkout.
- Commit string
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- Semver string
- The semver range used to match against git repository tags. This takes precedence over tag.
- Tag string
- The git repository tag name to checkout. This takes precedence over branch.
- branch String
- The git repository branch name to checkout.
- commit String
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver String
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag String
- The git repository tag name to checkout. This takes precedence over branch.
- branch string
- The git repository branch name to checkout.
- commit string
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver string
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag string
- The git repository tag name to checkout. This takes precedence over branch.
- branch str
- The git repository branch name to checkout.
- commit str
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver str
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag str
- The git repository tag name to checkout. This takes precedence over branch.
- branch String
- The git repository branch name to checkout.
- commit String
- The commit SHA to checkout. This value must be combined with the branch name to be valid. This takes precedence over semver.
- semver String
- The semver range used to match against git repository tags. This takes precedence over tag.
- tag String
- The git repository tag name to checkout. This takes precedence over branch.
ScopeType, ScopeTypeArgs    
- Cluster
- cluster
- @Namespace
- namespace
- ScopeType Cluster 
- cluster
- ScopeType Namespace 
- namespace
- Cluster
- cluster
- Namespace
- namespace
- Cluster
- cluster
- Namespace
- namespace
- CLUSTER
- cluster
- NAMESPACE
- namespace
- "cluster"
- cluster
- "namespace"
- namespace
SourceKindType, SourceKindTypeArgs      
- GitRepository 
- GitRepository
- SourceKind Type Git Repository 
- GitRepository
- GitRepository 
- GitRepository
- GitRepository 
- GitRepository
- GIT_REPOSITORY
- GitRepository
- "GitRepository" 
- GitRepository
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:kubernetesconfiguration:FluxConfiguration srs-fluxconfig /subscriptions/subId1/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/clusterName1/providers/Microsoft.KubernetesConfiguration/fluxConfigurations/srs-fluxconfig 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0