1. Packages
  2. Authentik Provider
  3. API Docs
  4. ServiceConnectionKubernetes
authentik 2025.2.0 published on Monday, Mar 24, 2025 by goauthentik

authentik.ServiceConnectionKubernetes

Explore with Pulumi AI

authentik logo
authentik 2025.2.0 published on Monday, Mar 24, 2025 by goauthentik

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as authentik from "@pulumi/authentik";
    
    const local = new authentik.ServiceConnectionKubernetes("local", {local: true});
    const remote_test_cluster = new authentik.ServiceConnectionKubernetes("remote-test-cluster", {kubeconfig: `kind: Config
    users: [...]
    
    `});
    
    import pulumi
    import pulumi_authentik as authentik
    
    local = authentik.ServiceConnectionKubernetes("local", local=True)
    remote_test_cluster = authentik.ServiceConnectionKubernetes("remote-test-cluster", kubeconfig="""kind: Config
    users: [...]
    
    """)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/authentik/v2025/authentik"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := authentik.NewServiceConnectionKubernetes(ctx, "local", &authentik.ServiceConnectionKubernetesArgs{
    			Local: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = authentik.NewServiceConnectionKubernetes(ctx, "remote-test-cluster", &authentik.ServiceConnectionKubernetesArgs{
    			Kubeconfig: pulumi.String("kind: Config\nusers: [...]\n\n"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Authentik = Pulumi.Authentik;
    
    return await Deployment.RunAsync(() => 
    {
        var local = new Authentik.ServiceConnectionKubernetes("local", new()
        {
            Local = true,
        });
    
        var remote_test_cluster = new Authentik.ServiceConnectionKubernetes("remote-test-cluster", new()
        {
            Kubeconfig = @"kind: Config
    users: [...]
    
    ",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.authentik.ServiceConnectionKubernetes;
    import com.pulumi.authentik.ServiceConnectionKubernetesArgs;
    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 local = new ServiceConnectionKubernetes("local", ServiceConnectionKubernetesArgs.builder()
                .local(true)
                .build());
    
            var remote_test_cluster = new ServiceConnectionKubernetes("remote-test-cluster", ServiceConnectionKubernetesArgs.builder()
                .kubeconfig("""
    kind: Config
    users: [...]
    
                """)
                .build());
    
        }
    }
    
    resources:
      local:
        type: authentik:ServiceConnectionKubernetes
        properties:
          local: true
      remote-test-cluster:
        type: authentik:ServiceConnectionKubernetes
        properties:
          kubeconfig: |+
            kind: Config
            users: [...]        
    

    Create ServiceConnectionKubernetes Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceConnectionKubernetes(name: string, args?: ServiceConnectionKubernetesArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceConnectionKubernetes(resource_name: str,
                                    args: Optional[ServiceConnectionKubernetesArgs] = None,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceConnectionKubernetes(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    kubeconfig: Optional[str] = None,
                                    local: Optional[bool] = None,
                                    name: Optional[str] = None,
                                    service_connection_kubernetes_id: Optional[str] = None,
                                    verify_ssl: Optional[bool] = None)
    func NewServiceConnectionKubernetes(ctx *Context, name string, args *ServiceConnectionKubernetesArgs, opts ...ResourceOption) (*ServiceConnectionKubernetes, error)
    public ServiceConnectionKubernetes(string name, ServiceConnectionKubernetesArgs? args = null, CustomResourceOptions? opts = null)
    public ServiceConnectionKubernetes(String name, ServiceConnectionKubernetesArgs args)
    public ServiceConnectionKubernetes(String name, ServiceConnectionKubernetesArgs args, CustomResourceOptions options)
    
    type: authentik:ServiceConnectionKubernetes
    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 ServiceConnectionKubernetesArgs
    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 ServiceConnectionKubernetesArgs
    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 ServiceConnectionKubernetesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceConnectionKubernetesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceConnectionKubernetesArgs
    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 serviceConnectionKubernetesResource = new Authentik.ServiceConnectionKubernetes("serviceConnectionKubernetesResource", new()
    {
        Kubeconfig = "string",
        Local = false,
        Name = "string",
        ServiceConnectionKubernetesId = "string",
        VerifySsl = false,
    });
    
    example, err := authentik.NewServiceConnectionKubernetes(ctx, "serviceConnectionKubernetesResource", &authentik.ServiceConnectionKubernetesArgs{
    	Kubeconfig:                    pulumi.String("string"),
    	Local:                         pulumi.Bool(false),
    	Name:                          pulumi.String("string"),
    	ServiceConnectionKubernetesId: pulumi.String("string"),
    	VerifySsl:                     pulumi.Bool(false),
    })
    
    var serviceConnectionKubernetesResource = new ServiceConnectionKubernetes("serviceConnectionKubernetesResource", ServiceConnectionKubernetesArgs.builder()
        .kubeconfig("string")
        .local(false)
        .name("string")
        .serviceConnectionKubernetesId("string")
        .verifySsl(false)
        .build());
    
    service_connection_kubernetes_resource = authentik.ServiceConnectionKubernetes("serviceConnectionKubernetesResource",
        kubeconfig="string",
        local=False,
        name="string",
        service_connection_kubernetes_id="string",
        verify_ssl=False)
    
    const serviceConnectionKubernetesResource = new authentik.ServiceConnectionKubernetes("serviceConnectionKubernetesResource", {
        kubeconfig: "string",
        local: false,
        name: "string",
        serviceConnectionKubernetesId: "string",
        verifySsl: false,
    });
    
    type: authentik:ServiceConnectionKubernetes
    properties:
        kubeconfig: string
        local: false
        name: string
        serviceConnectionKubernetesId: string
        verifySsl: false
    

    ServiceConnectionKubernetes 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 ServiceConnectionKubernetes resource accepts the following input properties:

    Kubeconfig string
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    Local bool
    Defaults to false.
    Name string
    ServiceConnectionKubernetesId string
    The ID of this resource.
    VerifySsl bool
    Defaults to true.
    Kubeconfig string
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    Local bool
    Defaults to false.
    Name string
    ServiceConnectionKubernetesId string
    The ID of this resource.
    VerifySsl bool
    Defaults to true.
    kubeconfig String
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local Boolean
    Defaults to false.
    name String
    serviceConnectionKubernetesId String
    The ID of this resource.
    verifySsl Boolean
    Defaults to true.
    kubeconfig string
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local boolean
    Defaults to false.
    name string
    serviceConnectionKubernetesId string
    The ID of this resource.
    verifySsl boolean
    Defaults to true.
    kubeconfig str
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local bool
    Defaults to false.
    name str
    service_connection_kubernetes_id str
    The ID of this resource.
    verify_ssl bool
    Defaults to true.
    kubeconfig String
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local Boolean
    Defaults to false.
    name String
    serviceConnectionKubernetesId String
    The ID of this resource.
    verifySsl Boolean
    Defaults to true.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceConnectionKubernetes resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ServiceConnectionKubernetes Resource

    Get an existing ServiceConnectionKubernetes resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ServiceConnectionKubernetesState, opts?: CustomResourceOptions): ServiceConnectionKubernetes
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            kubeconfig: Optional[str] = None,
            local: Optional[bool] = None,
            name: Optional[str] = None,
            service_connection_kubernetes_id: Optional[str] = None,
            verify_ssl: Optional[bool] = None) -> ServiceConnectionKubernetes
    func GetServiceConnectionKubernetes(ctx *Context, name string, id IDInput, state *ServiceConnectionKubernetesState, opts ...ResourceOption) (*ServiceConnectionKubernetes, error)
    public static ServiceConnectionKubernetes Get(string name, Input<string> id, ServiceConnectionKubernetesState? state, CustomResourceOptions? opts = null)
    public static ServiceConnectionKubernetes get(String name, Output<String> id, ServiceConnectionKubernetesState state, CustomResourceOptions options)
    resources:  _:    type: authentik:ServiceConnectionKubernetes    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Kubeconfig string
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    Local bool
    Defaults to false.
    Name string
    ServiceConnectionKubernetesId string
    The ID of this resource.
    VerifySsl bool
    Defaults to true.
    Kubeconfig string
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    Local bool
    Defaults to false.
    Name string
    ServiceConnectionKubernetesId string
    The ID of this resource.
    VerifySsl bool
    Defaults to true.
    kubeconfig String
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local Boolean
    Defaults to false.
    name String
    serviceConnectionKubernetesId String
    The ID of this resource.
    verifySsl Boolean
    Defaults to true.
    kubeconfig string
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local boolean
    Defaults to false.
    name string
    serviceConnectionKubernetesId string
    The ID of this resource.
    verifySsl boolean
    Defaults to true.
    kubeconfig str
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local bool
    Defaults to false.
    name str
    service_connection_kubernetes_id str
    The ID of this resource.
    verify_ssl bool
    Defaults to true.
    kubeconfig String
    JSON format expected. Use jsonencode() to pass objects. Defaults to {}.
    local Boolean
    Defaults to false.
    name String
    serviceConnectionKubernetesId String
    The ID of this resource.
    verifySsl Boolean
    Defaults to true.

    Package Details

    Repository
    authentik goauthentik/terraform-provider-authentik
    License
    Notes
    This Pulumi package is based on the authentik Terraform Provider.
    authentik logo
    authentik 2025.2.0 published on Monday, Mar 24, 2025 by goauthentik