1. Packages
  2. Konnect Provider
  3. API Docs
  4. PortalAuth
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

konnect.PortalAuth

Explore with Pulumi AI

PortalAuth Resource

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";

const myPortalauth = new konnect.PortalAuth("myPortalauth", {
    basicAuthEnabled: true,
    idpMappingEnabled: true,
    konnectMappingEnabled: false,
    oidcAuthEnabled: false,
    oidcClaimMappings: {
        email: "email",
        groups: "custom-group-claim",
        name: "name",
    },
    oidcClientId: "...my_oidc_client_id...",
    oidcClientSecret: "...my_oidc_client_secret...",
    oidcIssuer: "...my_oidc_issuer...",
    oidcScopes: ["..."],
    oidcTeamMappingEnabled: true,
    portalId: "7767e05c-f054-40cb-8b51-1f99bda85654",
    samlAuthEnabled: false,
});
Copy
import pulumi
import pulumi_konnect as konnect

my_portalauth = konnect.PortalAuth("myPortalauth",
    basic_auth_enabled=True,
    idp_mapping_enabled=True,
    konnect_mapping_enabled=False,
    oidc_auth_enabled=False,
    oidc_claim_mappings={
        "email": "email",
        "groups": "custom-group-claim",
        "name": "name",
    },
    oidc_client_id="...my_oidc_client_id...",
    oidc_client_secret="...my_oidc_client_secret...",
    oidc_issuer="...my_oidc_issuer...",
    oidc_scopes=["..."],
    oidc_team_mapping_enabled=True,
    portal_id="7767e05c-f054-40cb-8b51-1f99bda85654",
    saml_auth_enabled=False)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v2/konnect"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := konnect.NewPortalAuth(ctx, "myPortalauth", &konnect.PortalAuthArgs{
			BasicAuthEnabled:      pulumi.Bool(true),
			IdpMappingEnabled:     pulumi.Bool(true),
			KonnectMappingEnabled: pulumi.Bool(false),
			OidcAuthEnabled:       pulumi.Bool(false),
			OidcClaimMappings: &konnect.PortalAuthOidcClaimMappingsArgs{
				Email:  pulumi.String("email"),
				Groups: pulumi.String("custom-group-claim"),
				Name:   pulumi.String("name"),
			},
			OidcClientId:     pulumi.String("...my_oidc_client_id..."),
			OidcClientSecret: pulumi.String("...my_oidc_client_secret..."),
			OidcIssuer:       pulumi.String("...my_oidc_issuer..."),
			OidcScopes: pulumi.StringArray{
				pulumi.String("..."),
			},
			OidcTeamMappingEnabled: pulumi.Bool(true),
			PortalId:               pulumi.String("7767e05c-f054-40cb-8b51-1f99bda85654"),
			SamlAuthEnabled:        pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Konnect = Pulumi.Konnect;

return await Deployment.RunAsync(() => 
{
    var myPortalauth = new Konnect.PortalAuth("myPortalauth", new()
    {
        BasicAuthEnabled = true,
        IdpMappingEnabled = true,
        KonnectMappingEnabled = false,
        OidcAuthEnabled = false,
        OidcClaimMappings = new Konnect.Inputs.PortalAuthOidcClaimMappingsArgs
        {
            Email = "email",
            Groups = "custom-group-claim",
            Name = "name",
        },
        OidcClientId = "...my_oidc_client_id...",
        OidcClientSecret = "...my_oidc_client_secret...",
        OidcIssuer = "...my_oidc_issuer...",
        OidcScopes = new[]
        {
            "...",
        },
        OidcTeamMappingEnabled = true,
        PortalId = "7767e05c-f054-40cb-8b51-1f99bda85654",
        SamlAuthEnabled = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.PortalAuth;
import com.pulumi.konnect.PortalAuthArgs;
import com.pulumi.konnect.inputs.PortalAuthOidcClaimMappingsArgs;
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 myPortalauth = new PortalAuth("myPortalauth", PortalAuthArgs.builder()
            .basicAuthEnabled(true)
            .idpMappingEnabled(true)
            .konnectMappingEnabled(false)
            .oidcAuthEnabled(false)
            .oidcClaimMappings(PortalAuthOidcClaimMappingsArgs.builder()
                .email("email")
                .groups("custom-group-claim")
                .name("name")
                .build())
            .oidcClientId("...my_oidc_client_id...")
            .oidcClientSecret("...my_oidc_client_secret...")
            .oidcIssuer("...my_oidc_issuer...")
            .oidcScopes("...")
            .oidcTeamMappingEnabled(true)
            .portalId("7767e05c-f054-40cb-8b51-1f99bda85654")
            .samlAuthEnabled(false)
            .build());

    }
}
Copy
resources:
  myPortalauth:
    type: konnect:PortalAuth
    properties:
      basicAuthEnabled: true
      idpMappingEnabled: true
      konnectMappingEnabled: false
      oidcAuthEnabled: false
      oidcClaimMappings:
        email: email
        groups: custom-group-claim
        name: name
      oidcClientId: '...my_oidc_client_id...'
      oidcClientSecret: '...my_oidc_client_secret...'
      oidcIssuer: '...my_oidc_issuer...'
      oidcScopes:
        - '...'
      oidcTeamMappingEnabled: true
      portalId: 7767e05c-f054-40cb-8b51-1f99bda85654
      samlAuthEnabled: false
Copy

Create PortalAuth Resource

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

Constructor syntax

new PortalAuth(name: string, args: PortalAuthArgs, opts?: CustomResourceOptions);
@overload
def PortalAuth(resource_name: str,
               args: PortalAuthArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def PortalAuth(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               portal_id: Optional[str] = None,
               basic_auth_enabled: Optional[bool] = None,
               idp_mapping_enabled: Optional[bool] = None,
               konnect_mapping_enabled: Optional[bool] = None,
               oidc_auth_enabled: Optional[bool] = None,
               oidc_claim_mappings: Optional[PortalAuthOidcClaimMappingsArgs] = None,
               oidc_client_id: Optional[str] = None,
               oidc_client_secret: Optional[str] = None,
               oidc_issuer: Optional[str] = None,
               oidc_scopes: Optional[Sequence[str]] = None,
               oidc_team_mapping_enabled: Optional[bool] = None,
               saml_auth_enabled: Optional[bool] = None)
func NewPortalAuth(ctx *Context, name string, args PortalAuthArgs, opts ...ResourceOption) (*PortalAuth, error)
public PortalAuth(string name, PortalAuthArgs args, CustomResourceOptions? opts = null)
public PortalAuth(String name, PortalAuthArgs args)
public PortalAuth(String name, PortalAuthArgs args, CustomResourceOptions options)
type: konnect:PortalAuth
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PortalAuthArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PortalAuthArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PortalAuthArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PortalAuthArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PortalAuthArgs
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 portalAuthResource = new Konnect.PortalAuth("portalAuthResource", new()
{
    PortalId = "string",
    BasicAuthEnabled = false,
    IdpMappingEnabled = false,
    KonnectMappingEnabled = false,
    OidcAuthEnabled = false,
    OidcClaimMappings = new Konnect.Inputs.PortalAuthOidcClaimMappingsArgs
    {
        Email = "string",
        Groups = "string",
        Name = "string",
    },
    OidcClientId = "string",
    OidcClientSecret = "string",
    OidcIssuer = "string",
    OidcScopes = new[]
    {
        "string",
    },
    OidcTeamMappingEnabled = false,
    SamlAuthEnabled = false,
});
Copy
example, err := konnect.NewPortalAuth(ctx, "portalAuthResource", &konnect.PortalAuthArgs{
PortalId: pulumi.String("string"),
BasicAuthEnabled: pulumi.Bool(false),
IdpMappingEnabled: pulumi.Bool(false),
KonnectMappingEnabled: pulumi.Bool(false),
OidcAuthEnabled: pulumi.Bool(false),
OidcClaimMappings: &.PortalAuthOidcClaimMappingsArgs{
Email: pulumi.String("string"),
Groups: pulumi.String("string"),
Name: pulumi.String("string"),
},
OidcClientId: pulumi.String("string"),
OidcClientSecret: pulumi.String("string"),
OidcIssuer: pulumi.String("string"),
OidcScopes: pulumi.StringArray{
pulumi.String("string"),
},
OidcTeamMappingEnabled: pulumi.Bool(false),
SamlAuthEnabled: pulumi.Bool(false),
})
Copy
var portalAuthResource = new PortalAuth("portalAuthResource", PortalAuthArgs.builder()
    .portalId("string")
    .basicAuthEnabled(false)
    .idpMappingEnabled(false)
    .konnectMappingEnabled(false)
    .oidcAuthEnabled(false)
    .oidcClaimMappings(PortalAuthOidcClaimMappingsArgs.builder()
        .email("string")
        .groups("string")
        .name("string")
        .build())
    .oidcClientId("string")
    .oidcClientSecret("string")
    .oidcIssuer("string")
    .oidcScopes("string")
    .oidcTeamMappingEnabled(false)
    .samlAuthEnabled(false)
    .build());
Copy
portal_auth_resource = konnect.PortalAuth("portalAuthResource",
    portal_id="string",
    basic_auth_enabled=False,
    idp_mapping_enabled=False,
    konnect_mapping_enabled=False,
    oidc_auth_enabled=False,
    oidc_claim_mappings={
        "email": "string",
        "groups": "string",
        "name": "string",
    },
    oidc_client_id="string",
    oidc_client_secret="string",
    oidc_issuer="string",
    oidc_scopes=["string"],
    oidc_team_mapping_enabled=False,
    saml_auth_enabled=False)
Copy
const portalAuthResource = new konnect.PortalAuth("portalAuthResource", {
    portalId: "string",
    basicAuthEnabled: false,
    idpMappingEnabled: false,
    konnectMappingEnabled: false,
    oidcAuthEnabled: false,
    oidcClaimMappings: {
        email: "string",
        groups: "string",
        name: "string",
    },
    oidcClientId: "string",
    oidcClientSecret: "string",
    oidcIssuer: "string",
    oidcScopes: ["string"],
    oidcTeamMappingEnabled: false,
    samlAuthEnabled: false,
});
Copy
type: konnect:PortalAuth
properties:
    basicAuthEnabled: false
    idpMappingEnabled: false
    konnectMappingEnabled: false
    oidcAuthEnabled: false
    oidcClaimMappings:
        email: string
        groups: string
        name: string
    oidcClientId: string
    oidcClientSecret: string
    oidcIssuer: string
    oidcScopes:
        - string
    oidcTeamMappingEnabled: false
    portalId: string
    samlAuthEnabled: false
Copy

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

PortalId This property is required. string
ID of the portal.
BasicAuthEnabled bool
The organization has basic auth enabled.
IdpMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
KonnectMappingEnabled bool
Whether a Konnect Identity Admin assigns teams to a developer.
OidcAuthEnabled bool
The organization has OIDC disabled.
OidcClaimMappings PortalAuthOidcClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
OidcClientId string
OidcClientSecret string
OidcIssuer string
OidcScopes List<string>
OidcTeamMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has.
SamlAuthEnabled bool
The portal has SAML enabled or disabled.
PortalId This property is required. string
ID of the portal.
BasicAuthEnabled bool
The organization has basic auth enabled.
IdpMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
KonnectMappingEnabled bool
Whether a Konnect Identity Admin assigns teams to a developer.
OidcAuthEnabled bool
The organization has OIDC disabled.
OidcClaimMappings PortalAuthOidcClaimMappingsArgs
Mappings from a portal developer atribute to an Identity Provider claim.
OidcClientId string
OidcClientSecret string
OidcIssuer string
OidcScopes []string
OidcTeamMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has.
SamlAuthEnabled bool
The portal has SAML enabled or disabled.
portalId This property is required. String
ID of the portal.
basicAuthEnabled Boolean
The organization has basic auth enabled.
idpMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnectMappingEnabled Boolean
Whether a Konnect Identity Admin assigns teams to a developer.
oidcAuthEnabled Boolean
The organization has OIDC disabled.
oidcClaimMappings PortalAuthOidcClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
oidcClientId String
oidcClientSecret String
oidcIssuer String
oidcScopes List<String>
oidcTeamMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has.
samlAuthEnabled Boolean
The portal has SAML enabled or disabled.
portalId This property is required. string
ID of the portal.
basicAuthEnabled boolean
The organization has basic auth enabled.
idpMappingEnabled boolean
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnectMappingEnabled boolean
Whether a Konnect Identity Admin assigns teams to a developer.
oidcAuthEnabled boolean
The organization has OIDC disabled.
oidcClaimMappings PortalAuthOidcClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
oidcClientId string
oidcClientSecret string
oidcIssuer string
oidcScopes string[]
oidcTeamMappingEnabled boolean
Whether IdP groups determine the Konnect Portal teams a developer has.
samlAuthEnabled boolean
The portal has SAML enabled or disabled.
portal_id This property is required. str
ID of the portal.
basic_auth_enabled bool
The organization has basic auth enabled.
idp_mapping_enabled bool
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnect_mapping_enabled bool
Whether a Konnect Identity Admin assigns teams to a developer.
oidc_auth_enabled bool
The organization has OIDC disabled.
oidc_claim_mappings PortalAuthOidcClaimMappingsArgs
Mappings from a portal developer atribute to an Identity Provider claim.
oidc_client_id str
oidc_client_secret str
oidc_issuer str
oidc_scopes Sequence[str]
oidc_team_mapping_enabled bool
Whether IdP groups determine the Konnect Portal teams a developer has.
saml_auth_enabled bool
The portal has SAML enabled or disabled.
portalId This property is required. String
ID of the portal.
basicAuthEnabled Boolean
The organization has basic auth enabled.
idpMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnectMappingEnabled Boolean
Whether a Konnect Identity Admin assigns teams to a developer.
oidcAuthEnabled Boolean
The organization has OIDC disabled.
oidcClaimMappings Property Map
Mappings from a portal developer atribute to an Identity Provider claim.
oidcClientId String
oidcClientSecret String
oidcIssuer String
oidcScopes List<String>
oidcTeamMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has.
samlAuthEnabled Boolean
The portal has SAML enabled or disabled.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
OidcConfig PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
Id string
The provider-assigned unique ID for this managed resource.
OidcConfig PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
id String
The provider-assigned unique ID for this managed resource.
oidcConfig PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
id string
The provider-assigned unique ID for this managed resource.
oidcConfig PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
id str
The provider-assigned unique ID for this managed resource.
oidc_config PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
id String
The provider-assigned unique ID for this managed resource.
oidcConfig Property Map
Configuration properties for an OpenID Connect Identity Provider.

Look up Existing PortalAuth Resource

Get an existing PortalAuth 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?: PortalAuthState, opts?: CustomResourceOptions): PortalAuth
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        basic_auth_enabled: Optional[bool] = None,
        idp_mapping_enabled: Optional[bool] = None,
        konnect_mapping_enabled: Optional[bool] = None,
        oidc_auth_enabled: Optional[bool] = None,
        oidc_claim_mappings: Optional[PortalAuthOidcClaimMappingsArgs] = None,
        oidc_client_id: Optional[str] = None,
        oidc_client_secret: Optional[str] = None,
        oidc_config: Optional[PortalAuthOidcConfigArgs] = None,
        oidc_issuer: Optional[str] = None,
        oidc_scopes: Optional[Sequence[str]] = None,
        oidc_team_mapping_enabled: Optional[bool] = None,
        portal_id: Optional[str] = None,
        saml_auth_enabled: Optional[bool] = None) -> PortalAuth
func GetPortalAuth(ctx *Context, name string, id IDInput, state *PortalAuthState, opts ...ResourceOption) (*PortalAuth, error)
public static PortalAuth Get(string name, Input<string> id, PortalAuthState? state, CustomResourceOptions? opts = null)
public static PortalAuth get(String name, Output<String> id, PortalAuthState state, CustomResourceOptions options)
resources:  _:    type: konnect:PortalAuth    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
BasicAuthEnabled bool
The organization has basic auth enabled.
IdpMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
KonnectMappingEnabled bool
Whether a Konnect Identity Admin assigns teams to a developer.
OidcAuthEnabled bool
The organization has OIDC disabled.
OidcClaimMappings PortalAuthOidcClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
OidcClientId string
OidcClientSecret string
OidcConfig PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
OidcIssuer string
OidcScopes List<string>
OidcTeamMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has.
PortalId string
ID of the portal.
SamlAuthEnabled bool
The portal has SAML enabled or disabled.
BasicAuthEnabled bool
The organization has basic auth enabled.
IdpMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
KonnectMappingEnabled bool
Whether a Konnect Identity Admin assigns teams to a developer.
OidcAuthEnabled bool
The organization has OIDC disabled.
OidcClaimMappings PortalAuthOidcClaimMappingsArgs
Mappings from a portal developer atribute to an Identity Provider claim.
OidcClientId string
OidcClientSecret string
OidcConfig PortalAuthOidcConfigArgs
Configuration properties for an OpenID Connect Identity Provider.
OidcIssuer string
OidcScopes []string
OidcTeamMappingEnabled bool
Whether IdP groups determine the Konnect Portal teams a developer has.
PortalId string
ID of the portal.
SamlAuthEnabled bool
The portal has SAML enabled or disabled.
basicAuthEnabled Boolean
The organization has basic auth enabled.
idpMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnectMappingEnabled Boolean
Whether a Konnect Identity Admin assigns teams to a developer.
oidcAuthEnabled Boolean
The organization has OIDC disabled.
oidcClaimMappings PortalAuthOidcClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
oidcClientId String
oidcClientSecret String
oidcConfig PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
oidcIssuer String
oidcScopes List<String>
oidcTeamMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has.
portalId String
ID of the portal.
samlAuthEnabled Boolean
The portal has SAML enabled or disabled.
basicAuthEnabled boolean
The organization has basic auth enabled.
idpMappingEnabled boolean
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnectMappingEnabled boolean
Whether a Konnect Identity Admin assigns teams to a developer.
oidcAuthEnabled boolean
The organization has OIDC disabled.
oidcClaimMappings PortalAuthOidcClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
oidcClientId string
oidcClientSecret string
oidcConfig PortalAuthOidcConfig
Configuration properties for an OpenID Connect Identity Provider.
oidcIssuer string
oidcScopes string[]
oidcTeamMappingEnabled boolean
Whether IdP groups determine the Konnect Portal teams a developer has.
portalId string
ID of the portal.
samlAuthEnabled boolean
The portal has SAML enabled or disabled.
basic_auth_enabled bool
The organization has basic auth enabled.
idp_mapping_enabled bool
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnect_mapping_enabled bool
Whether a Konnect Identity Admin assigns teams to a developer.
oidc_auth_enabled bool
The organization has OIDC disabled.
oidc_claim_mappings PortalAuthOidcClaimMappingsArgs
Mappings from a portal developer atribute to an Identity Provider claim.
oidc_client_id str
oidc_client_secret str
oidc_config PortalAuthOidcConfigArgs
Configuration properties for an OpenID Connect Identity Provider.
oidc_issuer str
oidc_scopes Sequence[str]
oidc_team_mapping_enabled bool
Whether IdP groups determine the Konnect Portal teams a developer has.
portal_id str
ID of the portal.
saml_auth_enabled bool
The portal has SAML enabled or disabled.
basicAuthEnabled Boolean
The organization has basic auth enabled.
idpMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has. This will soon replace oidcteammapping_enabled.
konnectMappingEnabled Boolean
Whether a Konnect Identity Admin assigns teams to a developer.
oidcAuthEnabled Boolean
The organization has OIDC disabled.
oidcClaimMappings Property Map
Mappings from a portal developer atribute to an Identity Provider claim.
oidcClientId String
oidcClientSecret String
oidcConfig Property Map
Configuration properties for an OpenID Connect Identity Provider.
oidcIssuer String
oidcScopes List<String>
oidcTeamMappingEnabled Boolean
Whether IdP groups determine the Konnect Portal teams a developer has.
portalId String
ID of the portal.
samlAuthEnabled Boolean
The portal has SAML enabled or disabled.

Supporting Types

PortalAuthOidcClaimMappings
, PortalAuthOidcClaimMappingsArgs

Email string
Groups string
Name string
Email string
Groups string
Name string
email String
groups String
name String
email string
groups string
name string
email str
groups str
name str
email String
groups String
name String

PortalAuthOidcConfig
, PortalAuthOidcConfigArgs

ClaimMappings PortalAuthOidcConfigClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
ClientId string
Issuer string
Scopes List<string>
ClaimMappings PortalAuthOidcConfigClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
ClientId string
Issuer string
Scopes []string
claimMappings PortalAuthOidcConfigClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
clientId String
issuer String
scopes List<String>
claimMappings PortalAuthOidcConfigClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
clientId string
issuer string
scopes string[]
claim_mappings PortalAuthOidcConfigClaimMappings
Mappings from a portal developer atribute to an Identity Provider claim.
client_id str
issuer str
scopes Sequence[str]
claimMappings Property Map
Mappings from a portal developer atribute to an Identity Provider claim.
clientId String
issuer String
scopes List<String>

PortalAuthOidcConfigClaimMappings
, PortalAuthOidcConfigClaimMappingsArgs

Email string
Groups string
Name string
Email string
Groups string
Name string
email String
groups String
name String
email string
groups string
name string
email str
groups str
name str
email String
groups String
name String

Import

$ pulumi import konnect:index/portalAuth:PortalAuth my_konnect_portal_auth ""
Copy

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

Package Details

Repository
konnect kong/terraform-provider-konnect
License
Notes
This Pulumi package is based on the konnect Terraform Provider.