Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Files

Okta-Application

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 28, 2023
Jun 14, 2022
Apr 14, 2023
Apr 14, 2023
Jan 31, 2023
Dec 15, 2022
Jun 14, 2022
Jan 12, 2023
Nov 24, 2022
Dec 15, 2022
Jun 28, 2022
Feb 28, 2023
Aug 7, 2022
Nov 28, 2023
Nov 28, 2023
Dec 15, 2022
Apr 14, 2023
Dec 15, 2022
Aug 26, 2022
Aug 23, 2022

Okta::Application::Application

This resource type manages an Okta Application

Documentation

Prerequisites

To get started:

  1. Sign in to the AWS Management Console with your account and navigate to CloudFormation.

  2. Select "Public extensions" from the left hand pane and filter Publisher by "Third Party".

  3. Use the search bar to filter by the "Okta" prefix.

Note: All official Okta resources begin with Okta:: and specify that they are Published by Okta.

  1. Select the desired resource name to view more information about its schema, and click Activate.

  2. On the Extension details page, specify:

  • Extension name
  • Execution role ARN
  • Automatic updates for minor version releases
  • Configuration
  1. In your terminal, specify the configuration data for the registered Okta CloudFormation resource type, in the given account and region by using the SetTypeConfiguration operation:

For example:

$ aws cloudformation set-type-configuration \
--region us-west-2 --type RESOURCE \
--type-name Okta::Application::Application \
--configuration-alias default \
--configuration "{ \"OktaAccess\":{\"Url\":\"YOUOKTAURL\", \"ApiKey\":\"YOUROKTAAPIKEY\"}}"
  1. After you have your resource configured, create your AWS stack that includes any of the activated Okta resources.

For more information about available commands and workflows, see the official AWS documentation.

Supported regions

The Okta CloudFormation resources are available on the CloudFormation Public Registry in the following regions:

Code Name
us-east-1 US East (N. Virginia)
us-east-2 US East (Ohio)
us-west-1 US West (N. California)
us-west-2 US West (Oregon)
ap-south-1 Asia Pacific (Mumbai)
ap-northeast-1 Asia Pacific (Tokyo)
ap-northeast-2 Asia Pacific (Seoul)
ap-southeast-1 Asia Pacific (Singapore)
ap-southeast-2 Asia Pacific (Sydney)
ca-central-1 Canada (Central)
eu-central-1 Europe (Frankfurt)
eu-west-1 Europe (Ireland)
eu-west-2 Europe (London)
eu-west-3 Europe (Paris)
eu-north-1 Europe (Stockholm)
sa-east-1 South America (São Paulo)

Note: To privately register a resource in any other region, use the provided packages.

Examples

Shows how to create an Application in Okta

---
AWSTemplateFormatVersion: '2010-09-09'
Description: Shows how to create an Application in Okta
Resources:
  NewOktaApp:
    Type: Okta::Application::Application
    Properties:
      Name: "template_basic_auth"
      Label: "CFN Sample Application"
      SignOnMode: "BASIC_AUTH"
      Settings:
        App:
          Url: "https://example.com/login.html"
          AuthURL: "https://example.com/auth.html"