This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'Update or create a stack given a name and template + params' | |
from __future__ import division, print_function, unicode_literals | |
from datetime import datetime | |
import logging | |
import json | |
import sys | |
import boto3 | |
import botocore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: 2010-09-09 | |
Description: Template to create OKTA auth application load balancer. | |
Parameters: | |
CertificateArn: | |
Type: String | |
Description: ARN of certificate to use on HTTPS listener | |
authorizationEndpoint: | |
Type: String | |
Description: Okta account endpoint | |
Default: https://dev-12345.okta.com/oauth2/default/v1/authorize |