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

konnect.SystemAccountRole

Explore with Pulumi AI

konnect logo
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

    SystemAccountRole Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const mySystemaccountrole = new konnect.SystemAccountRole("mySystemaccountrole", {
        accountId: "...my_account_id...",
        entityId: "e67490ce-44dc-4cbd-b65e-b52c746fc26a",
        entityRegion: "eu",
        entityTypeName: "Control Planes",
        roleName: "Viewer",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_systemaccountrole = konnect.SystemAccountRole("mySystemaccountrole",
        account_id="...my_account_id...",
        entity_id="e67490ce-44dc-4cbd-b65e-b52c746fc26a",
        entity_region="eu",
        entity_type_name="Control Planes",
        role_name="Viewer")
    
    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.NewSystemAccountRole(ctx, "mySystemaccountrole", &konnect.SystemAccountRoleArgs{
    			AccountId:      pulumi.String("...my_account_id..."),
    			EntityId:       pulumi.String("e67490ce-44dc-4cbd-b65e-b52c746fc26a"),
    			EntityRegion:   pulumi.String("eu"),
    			EntityTypeName: pulumi.String("Control Planes"),
    			RoleName:       pulumi.String("Viewer"),
    		})
    		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 mySystemaccountrole = new Konnect.SystemAccountRole("mySystemaccountrole", new()
        {
            AccountId = "...my_account_id...",
            EntityId = "e67490ce-44dc-4cbd-b65e-b52c746fc26a",
            EntityRegion = "eu",
            EntityTypeName = "Control Planes",
            RoleName = "Viewer",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.SystemAccountRole;
    import com.pulumi.konnect.SystemAccountRoleArgs;
    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 mySystemaccountrole = new SystemAccountRole("mySystemaccountrole", SystemAccountRoleArgs.builder()
                .accountId("...my_account_id...")
                .entityId("e67490ce-44dc-4cbd-b65e-b52c746fc26a")
                .entityRegion("eu")
                .entityTypeName("Control Planes")
                .roleName("Viewer")
                .build());
    
        }
    }
    
    resources:
      mySystemaccountrole:
        type: konnect:SystemAccountRole
        properties:
          accountId: '...my_account_id...'
          entityId: e67490ce-44dc-4cbd-b65e-b52c746fc26a
          entityRegion: eu
          entityTypeName: Control Planes
          roleName: Viewer
    

    Create SystemAccountRole Resource

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

    Constructor syntax

    new SystemAccountRole(name: string, args: SystemAccountRoleArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAccountRole(resource_name: str,
                          args: SystemAccountRoleArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAccountRole(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_id: Optional[str] = None,
                          entity_id: Optional[str] = None,
                          entity_region: Optional[str] = None,
                          entity_type_name: Optional[str] = None,
                          role_name: Optional[str] = None)
    func NewSystemAccountRole(ctx *Context, name string, args SystemAccountRoleArgs, opts ...ResourceOption) (*SystemAccountRole, error)
    public SystemAccountRole(string name, SystemAccountRoleArgs args, CustomResourceOptions? opts = null)
    public SystemAccountRole(String name, SystemAccountRoleArgs args)
    public SystemAccountRole(String name, SystemAccountRoleArgs args, CustomResourceOptions options)
    
    type: konnect:SystemAccountRole
    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 SystemAccountRoleArgs
    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 SystemAccountRoleArgs
    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 SystemAccountRoleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAccountRoleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAccountRoleArgs
    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 systemAccountRoleResource = new Konnect.SystemAccountRole("systemAccountRoleResource", new()
    {
        AccountId = "string",
        EntityId = "string",
        EntityRegion = "string",
        EntityTypeName = "string",
        RoleName = "string",
    });
    
    example, err := konnect.NewSystemAccountRole(ctx, "systemAccountRoleResource", &konnect.SystemAccountRoleArgs{
    AccountId: pulumi.String("string"),
    EntityId: pulumi.String("string"),
    EntityRegion: pulumi.String("string"),
    EntityTypeName: pulumi.String("string"),
    RoleName: pulumi.String("string"),
    })
    
    var systemAccountRoleResource = new SystemAccountRole("systemAccountRoleResource", SystemAccountRoleArgs.builder()
        .accountId("string")
        .entityId("string")
        .entityRegion("string")
        .entityTypeName("string")
        .roleName("string")
        .build());
    
    system_account_role_resource = konnect.SystemAccountRole("systemAccountRoleResource",
        account_id="string",
        entity_id="string",
        entity_region="string",
        entity_type_name="string",
        role_name="string")
    
    const systemAccountRoleResource = new konnect.SystemAccountRole("systemAccountRoleResource", {
        accountId: "string",
        entityId: "string",
        entityRegion: "string",
        entityTypeName: "string",
        roleName: "string",
    });
    
    type: konnect:SystemAccountRole
    properties:
        accountId: string
        entityId: string
        entityRegion: string
        entityTypeName: string
        roleName: string
    

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

    AccountId string
    ID of the system account. Requires replacement if changed.
    EntityId string
    The ID of the entity. Requires replacement if changed.
    EntityRegion string
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    EntityTypeName string
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    RoleName string
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    AccountId string
    ID of the system account. Requires replacement if changed.
    EntityId string
    The ID of the entity. Requires replacement if changed.
    EntityRegion string
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    EntityTypeName string
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    RoleName string
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.
    entityId String
    The ID of the entity. Requires replacement if changed.
    entityRegion String
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entityTypeName String
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    roleName String
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    accountId string
    ID of the system account. Requires replacement if changed.
    entityId string
    The ID of the entity. Requires replacement if changed.
    entityRegion string
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entityTypeName string
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    roleName string
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    account_id str
    ID of the system account. Requires replacement if changed.
    entity_id str
    The ID of the entity. Requires replacement if changed.
    entity_region str
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entity_type_name str
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    role_name str
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.
    entityId String
    The ID of the entity. Requires replacement if changed.
    entityRegion String
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entityTypeName String
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    roleName String
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SystemAccountRole 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 SystemAccountRole Resource

    Get an existing SystemAccountRole 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?: SystemAccountRoleState, opts?: CustomResourceOptions): SystemAccountRole
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            entity_id: Optional[str] = None,
            entity_region: Optional[str] = None,
            entity_type_name: Optional[str] = None,
            role_name: Optional[str] = None) -> SystemAccountRole
    func GetSystemAccountRole(ctx *Context, name string, id IDInput, state *SystemAccountRoleState, opts ...ResourceOption) (*SystemAccountRole, error)
    public static SystemAccountRole Get(string name, Input<string> id, SystemAccountRoleState? state, CustomResourceOptions? opts = null)
    public static SystemAccountRole get(String name, Output<String> id, SystemAccountRoleState state, CustomResourceOptions options)
    resources:  _:    type: konnect:SystemAccountRole    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:
    AccountId string
    ID of the system account. Requires replacement if changed.
    EntityId string
    The ID of the entity. Requires replacement if changed.
    EntityRegion string
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    EntityTypeName string
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    RoleName string
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    AccountId string
    ID of the system account. Requires replacement if changed.
    EntityId string
    The ID of the entity. Requires replacement if changed.
    EntityRegion string
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    EntityTypeName string
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    RoleName string
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.
    entityId String
    The ID of the entity. Requires replacement if changed.
    entityRegion String
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entityTypeName String
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    roleName String
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    accountId string
    ID of the system account. Requires replacement if changed.
    entityId string
    The ID of the entity. Requires replacement if changed.
    entityRegion string
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entityTypeName string
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    roleName string
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    account_id str
    ID of the system account. Requires replacement if changed.
    entity_id str
    The ID of the entity. Requires replacement if changed.
    entity_region str
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entity_type_name str
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    role_name str
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.
    entityId String
    The ID of the entity. Requires replacement if changed.
    entityRegion String
    Region of the team. must be one of ["us", "eu", "au", "me", "in", "*"]; Requires replacement if changed.
    entityTypeName String
    The type of entity. must be one of ["APIs", "API Products", "Application Auth Strategies", "Audit Logs", "Control Planes", "DCR Providers", "Identity", "Mesh Control Planes", "Networks", "Portals", "Service Hub"]; Requires replacement if changed.
    roleName String
    The desired role. must be one of ["Admin", "Appearance Maintainer", "Application Registration", "Certificate Admin", "Cloud Gateway Cluster Admin", "Cloud Gateway Cluster Viewer", "Consumer Admin", "Connector", "Creator", "Deployer", "Discovery Admin", "Discovery Viewer", "Gateway Service Admin", "Integration Admin", "Integration Viewer", "Key Admin", "Maintainer", "Network Admin", "Network Creator", "Network Viewer", "Plugin Admin", "Plugins Admin", "Product Publisher", "Publisher", "Route Admin", "SNI Admin", "Service Admin", "Service Creator", "Service Viewer", "Upstream Admin", "Vault Admin", "Viewer"]; Requires replacement if changed.

    Package Details

    Repository
    konnect kong/terraform-provider-konnect
    License
    Notes
    This Pulumi package is based on the konnect Terraform Provider.
    konnect logo
    konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong