1. Packages
  2. Packages
  3. Konnect Provider
  4. API Docs
  5. PortalApplicationRegistration
Viewing docs for konnect 3.21.0
published on Tuesday, Aug 4, 2026 by kong
Viewing docs for konnect 3.21.0
published on Tuesday, Aug 4, 2026 by kong

    PortalApplicationRegistration Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myPortalapplicationregistration = new konnect.PortalApplicationRegistration("my_portalapplicationregistration", {
        apiId: "15a8f0a0-e185-4b99-8591-c6319de5704a",
        applicationId: "f5e17ae7-79e1-4181-931f-143b2159d313",
        portalId: "f32d905a-ed33-46a3-a093-d8f536af9a8a",
        status: "approved",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_portalapplicationregistration = konnect.PortalApplicationRegistration("my_portalapplicationregistration",
        api_id="15a8f0a0-e185-4b99-8591-c6319de5704a",
        application_id="f5e17ae7-79e1-4181-931f-143b2159d313",
        portal_id="f32d905a-ed33-46a3-a093-d8f536af9a8a",
        status="approved")
    
    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.NewPortalApplicationRegistration(ctx, "my_portalapplicationregistration", &konnect.PortalApplicationRegistrationArgs{
    			ApiId:         pulumi.String("15a8f0a0-e185-4b99-8591-c6319de5704a"),
    			ApplicationId: pulumi.String("f5e17ae7-79e1-4181-931f-143b2159d313"),
    			PortalId:      pulumi.String("f32d905a-ed33-46a3-a093-d8f536af9a8a"),
    			Status:        pulumi.String("approved"),
    		})
    		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 myPortalapplicationregistration = new Konnect.PortalApplicationRegistration("my_portalapplicationregistration", new()
        {
            ApiId = "15a8f0a0-e185-4b99-8591-c6319de5704a",
            ApplicationId = "f5e17ae7-79e1-4181-931f-143b2159d313",
            PortalId = "f32d905a-ed33-46a3-a093-d8f536af9a8a",
            Status = "approved",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.PortalApplicationRegistration;
    import com.pulumi.konnect.PortalApplicationRegistrationArgs;
    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 myPortalapplicationregistration = new PortalApplicationRegistration("myPortalapplicationregistration", PortalApplicationRegistrationArgs.builder()
                .apiId("15a8f0a0-e185-4b99-8591-c6319de5704a")
                .applicationId("f5e17ae7-79e1-4181-931f-143b2159d313")
                .portalId("f32d905a-ed33-46a3-a093-d8f536af9a8a")
                .status("approved")
                .build());
    
        }
    }
    
    resources:
      myPortalapplicationregistration:
        type: konnect:PortalApplicationRegistration
        name: my_portalapplicationregistration
        properties:
          apiId: 15a8f0a0-e185-4b99-8591-c6319de5704a
          applicationId: f5e17ae7-79e1-4181-931f-143b2159d313
          portalId: f32d905a-ed33-46a3-a093-d8f536af9a8a
          status: approved
    
    Example coming soon!
    

    Create PortalApplicationRegistration Resource

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

    Constructor syntax

    new PortalApplicationRegistration(name: string, args: PortalApplicationRegistrationArgs, opts?: CustomResourceOptions);
    @overload
    def PortalApplicationRegistration(resource_name: str,
                                      args: PortalApplicationRegistrationArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def PortalApplicationRegistration(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      api_id: Optional[str] = None,
                                      application_id: Optional[str] = None,
                                      portal_id: Optional[str] = None,
                                      status: Optional[str] = None)
    func NewPortalApplicationRegistration(ctx *Context, name string, args PortalApplicationRegistrationArgs, opts ...ResourceOption) (*PortalApplicationRegistration, error)
    public PortalApplicationRegistration(string name, PortalApplicationRegistrationArgs args, CustomResourceOptions? opts = null)
    public PortalApplicationRegistration(String name, PortalApplicationRegistrationArgs args)
    public PortalApplicationRegistration(String name, PortalApplicationRegistrationArgs args, CustomResourceOptions options)
    
    type: konnect:PortalApplicationRegistration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "konnect_portal_application_registration" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PortalApplicationRegistrationArgs
    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 PortalApplicationRegistrationArgs
    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 PortalApplicationRegistrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PortalApplicationRegistrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PortalApplicationRegistrationArgs
    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 portalApplicationRegistrationResource = new Konnect.PortalApplicationRegistration("portalApplicationRegistrationResource", new()
    {
        ApiId = "string",
        ApplicationId = "string",
        PortalId = "string",
        Status = "string",
    });
    
    example, err := konnect.NewPortalApplicationRegistration(ctx, "portalApplicationRegistrationResource", &konnect.PortalApplicationRegistrationArgs{
    	ApiId:         pulumi.String("string"),
    	ApplicationId: pulumi.String("string"),
    	PortalId:      pulumi.String("string"),
    	Status:        pulumi.String("string"),
    })
    
    resource "konnect_portal_application_registration" "portalApplicationRegistrationResource" {
      lifecycle {
        create_before_destroy = true
      }
      api_id         = "string"
      application_id = "string"
      portal_id      = "string"
      status         = "string"
    }
    
    var portalApplicationRegistrationResource = new PortalApplicationRegistration("portalApplicationRegistrationResource", PortalApplicationRegistrationArgs.builder()
        .apiId("string")
        .applicationId("string")
        .portalId("string")
        .status("string")
        .build());
    
    portal_application_registration_resource = konnect.PortalApplicationRegistration("portalApplicationRegistrationResource",
        api_id="string",
        application_id="string",
        portal_id="string",
        status="string")
    
    const portalApplicationRegistrationResource = new konnect.PortalApplicationRegistration("portalApplicationRegistrationResource", {
        apiId: "string",
        applicationId: "string",
        portalId: "string",
        status: "string",
    });
    
    type: konnect:PortalApplicationRegistration
    properties:
        apiId: string
        applicationId: string
        portalId: string
        status: string
    

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

    ApiId string
    The ID of the API the application is registering for. Requires replacement if changed.
    ApplicationId string
    ID of the application.
    PortalId string
    The Portal identifier
    Status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    ApiId string
    The ID of the API the application is registering for. Requires replacement if changed.
    ApplicationId string
    ID of the application.
    PortalId string
    The Portal identifier
    Status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    api_id string
    The ID of the API the application is registering for. Requires replacement if changed.
    application_id string
    ID of the application.
    portal_id string
    The Portal identifier
    status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    apiId String
    The ID of the API the application is registering for. Requires replacement if changed.
    applicationId String
    ID of the application.
    portalId String
    The Portal identifier
    status String
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    apiId string
    The ID of the API the application is registering for. Requires replacement if changed.
    applicationId string
    ID of the application.
    portalId string
    The Portal identifier
    status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    api_id str
    The ID of the API the application is registering for. Requires replacement if changed.
    application_id str
    ID of the application.
    portal_id str
    The Portal identifier
    status str
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    apiId String
    The ID of the API the application is registering for. Requires replacement if changed.
    applicationId String
    ID of the application.
    portalId String
    The Portal identifier
    status String
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]

    Outputs

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

    Api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    Application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    Consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    Api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    Application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    Consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    api object
    Details about the API the application is registered to.
    application object
    Details about the application the registration is part of.
    consumer object
    Details about the consumer associated with this application registration.
    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.
    api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    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.
    api Property Map
    Details about the API the application is registered to.
    application Property Map
    Details about the application the registration is part of.
    consumer Property Map
    Details about the consumer associated with this application registration.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Look up Existing PortalApplicationRegistration Resource

    Get an existing PortalApplicationRegistration 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?: PortalApplicationRegistrationState, opts?: CustomResourceOptions): PortalApplicationRegistration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api: Optional[PortalApplicationRegistrationApiArgs] = None,
            api_id: Optional[str] = None,
            application: Optional[PortalApplicationRegistrationApplicationArgs] = None,
            application_id: Optional[str] = None,
            consumer: Optional[PortalApplicationRegistrationConsumerArgs] = None,
            created_at: Optional[str] = None,
            portal_id: Optional[str] = None,
            status: Optional[str] = None,
            updated_at: Optional[str] = None) -> PortalApplicationRegistration
    func GetPortalApplicationRegistration(ctx *Context, name string, id IDInput, state *PortalApplicationRegistrationState, opts ...ResourceOption) (*PortalApplicationRegistration, error)
    public static PortalApplicationRegistration Get(string name, Input<string> id, PortalApplicationRegistrationState? state, CustomResourceOptions? opts = null)
    public static PortalApplicationRegistration get(String name, Output<String> id, PortalApplicationRegistrationState state, CustomResourceOptions options)
    resources:  _:    type: konnect:PortalApplicationRegistration    get:      id: ${id}
    import {
      to = konnect_portal_application_registration.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.
    The following state arguments are supported:
    Api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    ApiId string
    The ID of the API the application is registering for. Requires replacement if changed.
    Application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    ApplicationId string
    ID of the application.
    Consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    PortalId string
    The Portal identifier
    Status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    Api PortalApplicationRegistrationApiArgs
    Details about the API the application is registered to.
    ApiId string
    The ID of the API the application is registering for. Requires replacement if changed.
    Application PortalApplicationRegistrationApplicationArgs
    Details about the application the registration is part of.
    ApplicationId string
    ID of the application.
    Consumer PortalApplicationRegistrationConsumerArgs
    Details about the consumer associated with this application registration.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    PortalId string
    The Portal identifier
    Status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    api object
    Details about the API the application is registered to.
    api_id string
    The ID of the API the application is registering for. Requires replacement if changed.
    application object
    Details about the application the registration is part of.
    application_id string
    ID of the application.
    consumer object
    Details about the consumer associated with this application registration.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    portal_id string
    The Portal identifier
    status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    apiId String
    The ID of the API the application is registering for. Requires replacement if changed.
    application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    applicationId String
    ID of the application.
    consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    portalId String
    The Portal identifier
    status String
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    api PortalApplicationRegistrationApi
    Details about the API the application is registered to.
    apiId string
    The ID of the API the application is registering for. Requires replacement if changed.
    application PortalApplicationRegistrationApplication
    Details about the application the registration is part of.
    applicationId string
    ID of the application.
    consumer PortalApplicationRegistrationConsumer
    Details about the consumer associated with this application registration.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    portalId string
    The Portal identifier
    status string
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    api PortalApplicationRegistrationApiArgs
    Details about the API the application is registered to.
    api_id str
    The ID of the API the application is registering for. Requires replacement if changed.
    application PortalApplicationRegistrationApplicationArgs
    Details about the application the registration is part of.
    application_id str
    ID of the application.
    consumer PortalApplicationRegistrationConsumerArgs
    Details about the consumer associated with this application registration.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    portal_id str
    The Portal identifier
    status str
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    api Property Map
    Details about the API the application is registered to.
    apiId String
    The ID of the API the application is registering for. Requires replacement if changed.
    application Property Map
    Details about the application the registration is part of.
    applicationId String
    ID of the application.
    consumer Property Map
    Details about the consumer associated with this application registration.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    portalId String
    The Portal identifier
    status String
    The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Supporting Types

    PortalApplicationRegistrationApi, PortalApplicationRegistrationApiArgs

    EntityType string
    The type of entity that is being published. Can be either an API or an API Package.
    Id string
    Contains a unique identifier used for this resource.
    Name string
    The name of the API the application is registered to.
    Version string
    The version of the API the application is registered to.
    EntityType string
    The type of entity that is being published. Can be either an API or an API Package.
    Id string
    Contains a unique identifier used for this resource.
    Name string
    The name of the API the application is registered to.
    Version string
    The version of the API the application is registered to.
    entity_type string
    The type of entity that is being published. Can be either an API or an API Package.
    id string
    Contains a unique identifier used for this resource.
    name string
    The name of the API the application is registered to.
    version string
    The version of the API the application is registered to.
    entityType String
    The type of entity that is being published. Can be either an API or an API Package.
    id String
    Contains a unique identifier used for this resource.
    name String
    The name of the API the application is registered to.
    version String
    The version of the API the application is registered to.
    entityType string
    The type of entity that is being published. Can be either an API or an API Package.
    id string
    Contains a unique identifier used for this resource.
    name string
    The name of the API the application is registered to.
    version string
    The version of the API the application is registered to.
    entity_type str
    The type of entity that is being published. Can be either an API or an API Package.
    id str
    Contains a unique identifier used for this resource.
    name str
    The name of the API the application is registered to.
    version str
    The version of the API the application is registered to.
    entityType String
    The type of entity that is being published. Can be either an API or an API Package.
    id String
    Contains a unique identifier used for this resource.
    name String
    The name of the API the application is registered to.
    version String
    The version of the API the application is registered to.

    PortalApplicationRegistrationApplication, PortalApplicationRegistrationApplicationArgs

    Id string
    Contains a unique identifier used for this resource.
    Name string
    The name of the application the registration is part of.
    Id string
    Contains a unique identifier used for this resource.
    Name string
    The name of the application the registration is part of.
    id string
    Contains a unique identifier used for this resource.
    name string
    The name of the application the registration is part of.
    id String
    Contains a unique identifier used for this resource.
    name String
    The name of the application the registration is part of.
    id string
    Contains a unique identifier used for this resource.
    name string
    The name of the application the registration is part of.
    id str
    Contains a unique identifier used for this resource.
    name str
    The name of the application the registration is part of.
    id String
    Contains a unique identifier used for this resource.
    name String
    The name of the application the registration is part of.

    PortalApplicationRegistrationConsumer, PortalApplicationRegistrationConsumerArgs

    ControlPlaneId string
    Contains a unique identifier used for this resource.
    CustomId string
    The custom ID of the associated consumer.
    Id string
    Contains a unique identifier used for this resource.
    Username string
    The username of the associated consumer.
    ControlPlaneId string
    Contains a unique identifier used for this resource.
    CustomId string
    The custom ID of the associated consumer.
    Id string
    Contains a unique identifier used for this resource.
    Username string
    The username of the associated consumer.
    control_plane_id string
    Contains a unique identifier used for this resource.
    custom_id string
    The custom ID of the associated consumer.
    id string
    Contains a unique identifier used for this resource.
    username string
    The username of the associated consumer.
    controlPlaneId String
    Contains a unique identifier used for this resource.
    customId String
    The custom ID of the associated consumer.
    id String
    Contains a unique identifier used for this resource.
    username String
    The username of the associated consumer.
    controlPlaneId string
    Contains a unique identifier used for this resource.
    customId string
    The custom ID of the associated consumer.
    id string
    Contains a unique identifier used for this resource.
    username string
    The username of the associated consumer.
    control_plane_id str
    Contains a unique identifier used for this resource.
    custom_id str
    The custom ID of the associated consumer.
    id str
    Contains a unique identifier used for this resource.
    username str
    The username of the associated consumer.
    controlPlaneId String
    Contains a unique identifier used for this resource.
    customId String
    The custom ID of the associated consumer.
    id String
    Contains a unique identifier used for this resource.
    username String
    The username of the associated consumer.

    Import

    In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:

    terraform

    import {

    to = konnect_portal_application_registration.my_konnect_portal_application_registration

    id = jsonencode({

    application_id = "..."
    
    id             = "..."
    
    portal_id      = "f32d905a-ed33-46a3-a093-d8f536af9a8a"
    

    })

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/portalApplicationRegistration:PortalApplicationRegistration my_konnect_portal_application_registration '{"application_id": "...", "id": "...", "portal_id": "f32d905a-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 konnect Terraform Provider.
    Viewing docs for konnect 3.21.0
    published on Tuesday, Aug 4, 2026 by kong

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial