konnect.Portal
Explore with Pulumi AI
Portal Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myPortal = new konnect.Portal("myPortal", {
autoApproveApplications: false,
autoApproveDevelopers: false,
customClientDomain: "key-self-confidence.name",
customDomain: "measly-conservation.info",
defaultApplicationAuthStrategyId: "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
description: "...my_description...",
displayName: "...my_display_name...",
force: "true",
isPublic: false,
labels: {
key: "value",
},
rbacEnabled: true,
});
import pulumi
import pulumi_konnect as konnect
my_portal = konnect.Portal("myPortal",
auto_approve_applications=False,
auto_approve_developers=False,
custom_client_domain="key-self-confidence.name",
custom_domain="measly-conservation.info",
default_application_auth_strategy_id="5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
description="...my_description...",
display_name="...my_display_name...",
force="true",
is_public=False,
labels={
"key": "value",
},
rbac_enabled=True)
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.NewPortal(ctx, "myPortal", &konnect.PortalArgs{
AutoApproveApplications: pulumi.Bool(false),
AutoApproveDevelopers: pulumi.Bool(false),
CustomClientDomain: pulumi.String("key-self-confidence.name"),
CustomDomain: pulumi.String("measly-conservation.info"),
DefaultApplicationAuthStrategyId: pulumi.String("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"),
Description: pulumi.String("...my_description..."),
DisplayName: pulumi.String("...my_display_name..."),
Force: pulumi.String("true"),
IsPublic: pulumi.Bool(false),
Labels: pulumi.StringMap{
"key": pulumi.String("value"),
},
RbacEnabled: pulumi.Bool(true),
})
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 myPortal = new Konnect.Portal("myPortal", new()
{
AutoApproveApplications = false,
AutoApproveDevelopers = false,
CustomClientDomain = "key-self-confidence.name",
CustomDomain = "measly-conservation.info",
DefaultApplicationAuthStrategyId = "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
Description = "...my_description...",
DisplayName = "...my_display_name...",
Force = "true",
IsPublic = false,
Labels =
{
{ "key", "value" },
},
RbacEnabled = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.Portal;
import com.pulumi.konnect.PortalArgs;
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 myPortal = new Portal("myPortal", PortalArgs.builder()
.autoApproveApplications(false)
.autoApproveDevelopers(false)
.customClientDomain("key-self-confidence.name")
.customDomain("measly-conservation.info")
.defaultApplicationAuthStrategyId("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7")
.description("...my_description...")
.displayName("...my_display_name...")
.force("true")
.isPublic(false)
.labels(Map.of("key", "value"))
.rbacEnabled(true)
.build());
}
}
resources:
myPortal:
type: konnect:Portal
properties:
autoApproveApplications: false
autoApproveDevelopers: false
customClientDomain: key-self-confidence.name
customDomain: measly-conservation.info
defaultApplicationAuthStrategyId: 5f9fd312-a987-4628-b4c5-bb4f4fddd5f7
description: '...my_description...'
displayName: '...my_display_name...'
force: 'true'
isPublic: false
labels:
key: value
rbacEnabled: true
Create Portal Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Portal(name: string, args?: PortalArgs, opts?: CustomResourceOptions);
@overload
def Portal(resource_name: str,
args: Optional[PortalArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Portal(resource_name: str,
opts: Optional[ResourceOptions] = None,
auto_approve_applications: Optional[bool] = None,
auto_approve_developers: Optional[bool] = None,
custom_client_domain: Optional[str] = None,
custom_domain: Optional[str] = None,
default_application_auth_strategy_id: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
force: Optional[str] = None,
is_public: Optional[bool] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
rbac_enabled: Optional[bool] = None)
func NewPortal(ctx *Context, name string, args *PortalArgs, opts ...ResourceOption) (*Portal, error)
public Portal(string name, PortalArgs? args = null, CustomResourceOptions? opts = null)
public Portal(String name, PortalArgs args)
public Portal(String name, PortalArgs args, CustomResourceOptions options)
type: konnect:Portal
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 PortalArgs
- 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 PortalArgs
- 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 PortalArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PortalArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PortalArgs
- 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 portalResource = new Konnect.Portal("portalResource", new()
{
AutoApproveApplications = false,
AutoApproveDevelopers = false,
CustomClientDomain = "string",
CustomDomain = "string",
DefaultApplicationAuthStrategyId = "string",
Description = "string",
DisplayName = "string",
Force = "string",
IsPublic = false,
Labels =
{
{ "string", "string" },
},
Name = "string",
RbacEnabled = false,
});
example, err := konnect.NewPortal(ctx, "portalResource", &konnect.PortalArgs{
AutoApproveApplications: pulumi.Bool(false),
AutoApproveDevelopers: pulumi.Bool(false),
CustomClientDomain: pulumi.String("string"),
CustomDomain: pulumi.String("string"),
DefaultApplicationAuthStrategyId: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Force: pulumi.String("string"),
IsPublic: pulumi.Bool(false),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
RbacEnabled: pulumi.Bool(false),
})
var portalResource = new Portal("portalResource", PortalArgs.builder()
.autoApproveApplications(false)
.autoApproveDevelopers(false)
.customClientDomain("string")
.customDomain("string")
.defaultApplicationAuthStrategyId("string")
.description("string")
.displayName("string")
.force("string")
.isPublic(false)
.labels(Map.of("string", "string"))
.name("string")
.rbacEnabled(false)
.build());
portal_resource = konnect.Portal("portalResource",
auto_approve_applications=False,
auto_approve_developers=False,
custom_client_domain="string",
custom_domain="string",
default_application_auth_strategy_id="string",
description="string",
display_name="string",
force="string",
is_public=False,
labels={
"string": "string",
},
name="string",
rbac_enabled=False)
const portalResource = new konnect.Portal("portalResource", {
autoApproveApplications: false,
autoApproveDevelopers: false,
customClientDomain: "string",
customDomain: "string",
defaultApplicationAuthStrategyId: "string",
description: "string",
displayName: "string",
force: "string",
isPublic: false,
labels: {
string: "string",
},
name: "string",
rbacEnabled: false,
});
type: konnect:Portal
properties:
autoApproveApplications: false
autoApproveDevelopers: false
customClientDomain: string
customDomain: string
defaultApplicationAuthStrategyId: string
description: string
displayName: string
force: string
isPublic: false
labels:
string: string
name: string
rbacEnabled: false
Portal 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 Portal resource accepts the following input properties:
- Auto
Approve boolApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- Auto
Approve boolDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- Custom
Client stringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - Custom
Domain string - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- Default
Application stringAuth Strategy Id - Default strategy ID applied on applications for the portal
- Description string
- The description of the portal.
- Display
Name string - The display name of the portal. This value will be the portal's
name
in Portal API. - Force string
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- Is
Public bool - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- Labels Dictionary<string, string>
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- Name string
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- Rbac
Enabled bool - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- Auto
Approve boolApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- Auto
Approve boolDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- Custom
Client stringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - Custom
Domain string - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- Default
Application stringAuth Strategy Id - Default strategy ID applied on applications for the portal
- Description string
- The description of the portal.
- Display
Name string - The display name of the portal. This value will be the portal's
name
in Portal API. - Force string
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- Is
Public bool - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- Labels map[string]string
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- Name string
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- Rbac
Enabled bool - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- auto
Approve BooleanApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto
Approve BooleanDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- custom
Client StringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom
Domain String - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default
Application StringAuth Strategy Id - Default strategy ID applied on applications for the portal
- description String
- The description of the portal.
- display
Name String - The display name of the portal. This value will be the portal's
name
in Portal API. - force String
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is
Public Boolean - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels Map<String,String>
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name String
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- rbac
Enabled Boolean - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- auto
Approve booleanApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto
Approve booleanDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- custom
Client stringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom
Domain string - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default
Application stringAuth Strategy Id - Default strategy ID applied on applications for the portal
- description string
- The description of the portal.
- display
Name string - The display name of the portal. This value will be the portal's
name
in Portal API. - force string
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is
Public boolean - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels {[key: string]: string}
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name string
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- rbac
Enabled boolean - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- auto_
approve_ boolapplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto_
approve_ booldevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- custom_
client_ strdomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom_
domain str - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default_
application_ strauth_ strategy_ id - Default strategy ID applied on applications for the portal
- description str
- The description of the portal.
- display_
name str - The display name of the portal. This value will be the portal's
name
in Portal API. - force str
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is_
public bool - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels Mapping[str, str]
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name str
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- rbac_
enabled bool - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- auto
Approve BooleanApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto
Approve BooleanDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- custom
Client StringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom
Domain String - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default
Application StringAuth Strategy Id - Default strategy ID applied on applications for the portal
- description String
- The description of the portal.
- display
Name String - The display name of the portal. This value will be the portal's
name
in Portal API. - force String
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is
Public Boolean - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels Map<String>
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name String
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- rbac
Enabled Boolean - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
Outputs
All input properties are implicitly available as output properties. Additionally, the Portal resource produces the following output properties:
- Application
Count double - Number of applications created in the portal.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Default
Domain string - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- Developer
Count double - Number of developers using the portal.
- Id string
- The provider-assigned unique ID for this managed resource.
- Published
Product doubleCount - Number of api products published to the portal
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Application
Count float64 - Number of applications created in the portal.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Default
Domain string - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- Developer
Count float64 - Number of developers using the portal.
- Id string
- The provider-assigned unique ID for this managed resource.
- Published
Product float64Count - Number of api products published to the portal
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- application
Count Double - Number of applications created in the portal.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- default
Domain String - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- developer
Count Double - Number of developers using the portal.
- id String
- The provider-assigned unique ID for this managed resource.
- published
Product DoubleCount - Number of api products published to the portal
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- application
Count number - Number of applications created in the portal.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- default
Domain string - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- developer
Count number - Number of developers using the portal.
- id string
- The provider-assigned unique ID for this managed resource.
- published
Product numberCount - Number of api products published to the portal
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- application_
count float - Number of applications created in the portal.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- default_
domain str - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- developer_
count float - Number of developers using the portal.
- id str
- The provider-assigned unique ID for this managed resource.
- published_
product_ floatcount - Number of api products published to the portal
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- application
Count Number - Number of applications created in the portal.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- default
Domain String - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- developer
Count Number - Number of developers using the portal.
- id String
- The provider-assigned unique ID for this managed resource.
- published
Product NumberCount - Number of api products published to the portal
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Look up Existing Portal Resource
Get an existing Portal 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?: PortalState, opts?: CustomResourceOptions): Portal
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_count: Optional[float] = None,
auto_approve_applications: Optional[bool] = None,
auto_approve_developers: Optional[bool] = None,
created_at: Optional[str] = None,
custom_client_domain: Optional[str] = None,
custom_domain: Optional[str] = None,
default_application_auth_strategy_id: Optional[str] = None,
default_domain: Optional[str] = None,
description: Optional[str] = None,
developer_count: Optional[float] = None,
display_name: Optional[str] = None,
force: Optional[str] = None,
is_public: Optional[bool] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
published_product_count: Optional[float] = None,
rbac_enabled: Optional[bool] = None,
updated_at: Optional[str] = None) -> Portal
func GetPortal(ctx *Context, name string, id IDInput, state *PortalState, opts ...ResourceOption) (*Portal, error)
public static Portal Get(string name, Input<string> id, PortalState? state, CustomResourceOptions? opts = null)
public static Portal get(String name, Output<String> id, PortalState state, CustomResourceOptions options)
resources: _: type: konnect:Portal 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.
- Application
Count double - Number of applications created in the portal.
- Auto
Approve boolApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- Auto
Approve boolDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Custom
Client stringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - Custom
Domain string - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- Default
Application stringAuth Strategy Id - Default strategy ID applied on applications for the portal
- Default
Domain string - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- Description string
- The description of the portal.
- Developer
Count double - Number of developers using the portal.
- Display
Name string - The display name of the portal. This value will be the portal's
name
in Portal API. - Force string
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- Is
Public bool - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- Labels Dictionary<string, string>
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- Name string
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- Published
Product doubleCount - Number of api products published to the portal
- Rbac
Enabled bool - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Application
Count float64 - Number of applications created in the portal.
- Auto
Approve boolApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- Auto
Approve boolDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Custom
Client stringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - Custom
Domain string - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- Default
Application stringAuth Strategy Id - Default strategy ID applied on applications for the portal
- Default
Domain string - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- Description string
- The description of the portal.
- Developer
Count float64 - Number of developers using the portal.
- Display
Name string - The display name of the portal. This value will be the portal's
name
in Portal API. - Force string
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- Is
Public bool - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- Labels map[string]string
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- Name string
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- Published
Product float64Count - Number of api products published to the portal
- Rbac
Enabled bool - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- application
Count Double - Number of applications created in the portal.
- auto
Approve BooleanApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto
Approve BooleanDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- custom
Client StringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom
Domain String - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default
Application StringAuth Strategy Id - Default strategy ID applied on applications for the portal
- default
Domain String - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- description String
- The description of the portal.
- developer
Count Double - Number of developers using the portal.
- display
Name String - The display name of the portal. This value will be the portal's
name
in Portal API. - force String
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is
Public Boolean - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels Map<String,String>
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name String
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- published
Product DoubleCount - Number of api products published to the portal
- rbac
Enabled Boolean - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- application
Count number - Number of applications created in the portal.
- auto
Approve booleanApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto
Approve booleanDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- custom
Client stringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom
Domain string - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default
Application stringAuth Strategy Id - Default strategy ID applied on applications for the portal
- default
Domain string - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- description string
- The description of the portal.
- developer
Count number - Number of developers using the portal.
- display
Name string - The display name of the portal. This value will be the portal's
name
in Portal API. - force string
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is
Public boolean - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels {[key: string]: string}
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name string
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- published
Product numberCount - Number of api products published to the portal
- rbac
Enabled boolean - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- application_
count float - Number of applications created in the portal.
- auto_
approve_ boolapplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto_
approve_ booldevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- custom_
client_ strdomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom_
domain str - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default_
application_ strauth_ strategy_ id - Default strategy ID applied on applications for the portal
- default_
domain str - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- description str
- The description of the portal.
- developer_
count float - Number of developers using the portal.
- display_
name str - The display name of the portal. This value will be the portal's
name
in Portal API. - force str
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is_
public bool - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels Mapping[str, str]
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name str
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- published_
product_ floatcount - Number of api products published to the portal
- rbac_
enabled bool - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- application
Count Number - Number of applications created in the portal.
- auto
Approve BooleanApplications - Whether the requests from applications to register for products will be automatically approved, or if they will be set to pending until approved by an admin.
- auto
Approve BooleanDevelopers - Whether the developer account registrations will be automatically approved, or if they will be set to pending until approved by an admin.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- custom
Client StringDomain - The custom domain to access a self-hosted customized developer portal client. If this is set, the Konnect-hosted portal will no longer be available.
custom_domain
must be also set for this value to be set. See https://github.com/Kong/konnect-portal for information on how to get started deploying and customizing your own Konnect portal. - custom
Domain String - The custom domain to access the developer portal. A CNAME for the portal's default domain must be able to be set for the custom domain for it to be valid. After setting a valid CNAME, an SSL/TLS certificate will be automatically manged for the custom domain, and traffic will be able to use the custom domain to route to the portal's web client and API.
- default
Application StringAuth Strategy Id - Default strategy ID applied on applications for the portal
- default
Domain String - The domain assigned to the portal by Konnect. This is the default place to access the portal and its API if not using a `custom_domain``.
- description String
- The description of the portal.
- developer
Count Number - Number of developers using the portal.
- display
Name String - The display name of the portal. This value will be the portal's
name
in Portal API. - force String
- If true, delete specified portal and all related entities, even if there are developers registered to portal or if there are portal product versions with application registration enabled. If false, do not allow deletion if there are developers registered to portal or if there are portal product versions with application registration enabled. Default: "false"; must be one of ["true", "false"]
- is
Public Boolean - Whether the portal catalog can be accessed publicly without any developer authentication. Developer accounts and applications cannot be created if the portal is public.
- labels Map<String>
- Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
- name String
- The name of the portal, used to distinguish it from other portals. Name must be unique.
- published
Product NumberCount - Number of api products published to the portal
- rbac
Enabled Boolean - Whether the portal resources are protected by Role Based Access Control (RBAC). If enabled, developers view or register for products until unless assigned to teams with access to view and consume specific products.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Package Details
- Repository
- konnect kong/terraform-provider-konnect
- License
- Notes
- This Pulumi package is based on the
konnect
Terraform Provider.