published on Tuesday, May 12, 2026 by kong
published on Tuesday, May 12, 2026 by kong
IdentityProviderTeamGroupMapping Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myIdentityproviderteamgroupmapping = new konnect.IdentityProviderTeamGroupMapping("my_identityproviderteamgroupmapping", {
group: "Tech Leads",
identityProviderId: "d32d905a-ed33-46a3-a093-d8f536af9a8a",
teamId: "6801e673-cc10-498a-94cd-4271de07a0d3",
});
import pulumi
import pulumi_konnect as konnect
my_identityproviderteamgroupmapping = konnect.IdentityProviderTeamGroupMapping("my_identityproviderteamgroupmapping",
group="Tech Leads",
identity_provider_id="d32d905a-ed33-46a3-a093-d8f536af9a8a",
team_id="6801e673-cc10-498a-94cd-4271de07a0d3")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v3/konnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := konnect.NewIdentityProviderTeamGroupMapping(ctx, "my_identityproviderteamgroupmapping", &konnect.IdentityProviderTeamGroupMappingArgs{
Group: pulumi.String("Tech Leads"),
IdentityProviderId: pulumi.String("d32d905a-ed33-46a3-a093-d8f536af9a8a"),
TeamId: pulumi.String("6801e673-cc10-498a-94cd-4271de07a0d3"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Konnect = Pulumi.Konnect;
return await Deployment.RunAsync(() =>
{
var myIdentityproviderteamgroupmapping = new Konnect.IdentityProviderTeamGroupMapping("my_identityproviderteamgroupmapping", new()
{
Group = "Tech Leads",
IdentityProviderId = "d32d905a-ed33-46a3-a093-d8f536af9a8a",
TeamId = "6801e673-cc10-498a-94cd-4271de07a0d3",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.IdentityProviderTeamGroupMapping;
import com.pulumi.konnect.IdentityProviderTeamGroupMappingArgs;
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 myIdentityproviderteamgroupmapping = new IdentityProviderTeamGroupMapping("myIdentityproviderteamgroupmapping", IdentityProviderTeamGroupMappingArgs.builder()
.group("Tech Leads")
.identityProviderId("d32d905a-ed33-46a3-a093-d8f536af9a8a")
.teamId("6801e673-cc10-498a-94cd-4271de07a0d3")
.build());
}
}
resources:
myIdentityproviderteamgroupmapping:
type: konnect:IdentityProviderTeamGroupMapping
name: my_identityproviderteamgroupmapping
properties:
group: Tech Leads
identityProviderId: d32d905a-ed33-46a3-a093-d8f536af9a8a
teamId: 6801e673-cc10-498a-94cd-4271de07a0d3
Example coming soon!
Create IdentityProviderTeamGroupMapping Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IdentityProviderTeamGroupMapping(name: string, args: IdentityProviderTeamGroupMappingArgs, opts?: CustomResourceOptions);@overload
def IdentityProviderTeamGroupMapping(resource_name: str,
args: IdentityProviderTeamGroupMappingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IdentityProviderTeamGroupMapping(resource_name: str,
opts: Optional[ResourceOptions] = None,
group: Optional[str] = None,
identity_provider_id: Optional[str] = None,
team_id: Optional[str] = None)func NewIdentityProviderTeamGroupMapping(ctx *Context, name string, args IdentityProviderTeamGroupMappingArgs, opts ...ResourceOption) (*IdentityProviderTeamGroupMapping, error)public IdentityProviderTeamGroupMapping(string name, IdentityProviderTeamGroupMappingArgs args, CustomResourceOptions? opts = null)
public IdentityProviderTeamGroupMapping(String name, IdentityProviderTeamGroupMappingArgs args)
public IdentityProviderTeamGroupMapping(String name, IdentityProviderTeamGroupMappingArgs args, CustomResourceOptions options)
type: konnect:IdentityProviderTeamGroupMapping
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "konnect_identityproviderteamgroupmapping" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IdentityProviderTeamGroupMappingArgs
- 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 IdentityProviderTeamGroupMappingArgs
- 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 IdentityProviderTeamGroupMappingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IdentityProviderTeamGroupMappingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IdentityProviderTeamGroupMappingArgs
- 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 identityProviderTeamGroupMappingResource = new Konnect.IdentityProviderTeamGroupMapping("identityProviderTeamGroupMappingResource", new()
{
Group = "string",
IdentityProviderId = "string",
TeamId = "string",
});
example, err := konnect.NewIdentityProviderTeamGroupMapping(ctx, "identityProviderTeamGroupMappingResource", &konnect.IdentityProviderTeamGroupMappingArgs{
Group: pulumi.String("string"),
IdentityProviderId: pulumi.String("string"),
TeamId: pulumi.String("string"),
})
resource "konnect_identityproviderteamgroupmapping" "identityProviderTeamGroupMappingResource" {
group = "string"
identity_provider_id = "string"
team_id = "string"
}
var identityProviderTeamGroupMappingResource = new IdentityProviderTeamGroupMapping("identityProviderTeamGroupMappingResource", IdentityProviderTeamGroupMappingArgs.builder()
.group("string")
.identityProviderId("string")
.teamId("string")
.build());
identity_provider_team_group_mapping_resource = konnect.IdentityProviderTeamGroupMapping("identityProviderTeamGroupMappingResource",
group="string",
identity_provider_id="string",
team_id="string")
const identityProviderTeamGroupMappingResource = new konnect.IdentityProviderTeamGroupMapping("identityProviderTeamGroupMappingResource", {
group: "string",
identityProviderId: "string",
teamId: "string",
});
type: konnect:IdentityProviderTeamGroupMapping
properties:
group: string
identityProviderId: string
teamId: string
IdentityProviderTeamGroupMapping 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 IdentityProviderTeamGroupMapping resource accepts the following input properties:
- Group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- Identity
Provider stringId - ID of the identity provider. Requires replacement if changed.
- Team
Id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- Group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- Identity
Provider stringId - ID of the identity provider. Requires replacement if changed.
- Team
Id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity_
provider_ stringid - ID of the identity provider. Requires replacement if changed.
- team_
id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- group String
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity
Provider StringId - ID of the identity provider. Requires replacement if changed.
- team
Id String - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity
Provider stringId - ID of the identity provider. Requires replacement if changed.
- team
Id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- group str
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity_
provider_ strid - ID of the identity provider. Requires replacement if changed.
- team_
id str - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- group String
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity
Provider StringId - ID of the identity provider. Requires replacement if changed.
- team
Id String - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the IdentityProviderTeamGroupMapping resource produces the following output properties:
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The provider-assigned unique ID for this managed resource.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
Look up Existing IdentityProviderTeamGroupMapping Resource
Get an existing IdentityProviderTeamGroupMapping 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?: IdentityProviderTeamGroupMappingState, opts?: CustomResourceOptions): IdentityProviderTeamGroupMapping@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
group: Optional[str] = None,
identity_provider_id: Optional[str] = None,
team_id: Optional[str] = None,
updated_at: Optional[str] = None) -> IdentityProviderTeamGroupMappingfunc GetIdentityProviderTeamGroupMapping(ctx *Context, name string, id IDInput, state *IdentityProviderTeamGroupMappingState, opts ...ResourceOption) (*IdentityProviderTeamGroupMapping, error)public static IdentityProviderTeamGroupMapping Get(string name, Input<string> id, IdentityProviderTeamGroupMappingState? state, CustomResourceOptions? opts = null)public static IdentityProviderTeamGroupMapping get(String name, Output<String> id, IdentityProviderTeamGroupMappingState state, CustomResourceOptions options)resources: _: type: konnect:IdentityProviderTeamGroupMapping get: id: ${id}import {
to = konnect_identityproviderteamgroupmapping.example
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.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- Identity
Provider stringId - ID of the identity provider. Requires replacement if changed.
- Team
Id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- Identity
Provider stringId - ID of the identity provider. Requires replacement if changed.
- Team
Id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity_
provider_ stringid - ID of the identity provider. Requires replacement if changed.
- team_
id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- group String
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity
Provider StringId - ID of the identity provider. Requires replacement if changed.
- team
Id String - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- group string
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity
Provider stringId - ID of the identity provider. Requires replacement if changed.
- team
Id string - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- group str
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity_
provider_ strid - ID of the identity provider. Requires replacement if changed.
- team_
id str - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- group String
- The identity provider group name. Group names are case sensitive. Requires replacement if changed.
- identity
Provider StringId - ID of the identity provider. Requires replacement if changed.
- team
Id String - The Konnect team ID to associate with the identity provider group. Requires replacement if changed.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = konnect_identity_provider_team_group_mapping.my_konnect_identity_provider_team_group_mapping
id = jsonencode({
id = "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7"
identity_provider_id = "d32d905a-ed33-46a3-a093-d8f536af9a8a"
})
}
The pulumi import command can be used, for example:
$ pulumi import konnect:index/identityProviderTeamGroupMapping:IdentityProviderTeamGroupMapping my_konnect_identity_provider_team_group_mapping '{"id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "identity_provider_id": "d32d905a-ed33-46a3-a093-d8f536af9a8a"}'
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
konnectTerraform Provider.
published on Tuesday, May 12, 2026 by kong
