Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
225 changes: 174 additions & 51 deletions README.md

Large diffs are not rendered by default.

Binary file added img/githubissuerequest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/githubissuerequestapp.png
Binary file not shown.
36 changes: 36 additions & 0 deletions secretstemplate
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
##########################################
# The following fields are from the platform secrets
# used to deploy the environments. Specifically, from
# the PingOne Administrator Worker Application
##########################################
export TF_VAR_pingone_client_id=''
export TF_VAR_pingone_client_secret=''
export TF_VAR_pingone_client_environment_id=''
# The following is one of: "AP | AU | CA | EU | NA"
export TF_VAR_pingone_client_region_code=''

##########################################
# The following fields are the Davinci Admin
# environment and credentials from platform secrets
##########################################
export TF_VAR_pingone_davinci_admin_username=''
export TF_VAR_pingone_davinci_admin_password=''
export TF_VAR_pingone_davinci_admin_environment_id=''
# The following is one of: NorthAmerica | Canada | Asia | Europe
export TF_VAR_pingone_davinci_admin_region=''
export PINGONE_TARGET_ENVIRONMENT_ID_PROD=''
export PINGONE_TARGET_ENVIRONMENT_ID_QA=''

##########################################
# S3 credentials and information for storing state
##########################################
# aws credentials and information for dev environment
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
# bucket name for storing state - for example, 'ping-terraform-demo-mycompany'
export TF_VAR_tf_state_bucket=''
# region for storing state - for example, 'us-west-1'
export TF_VAR_tf_state_region='us-west-1'
# DO NOT EDIT, this will be suffixed with the branch name during script deployment
# for example, 'application-state/dev/myfeature/terraform.tfstate'
export TF_VAR_tf_state_key_prefix="application-state"
1 change: 1 addition & 0 deletions terraform/customer_simple_registration.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ resource "docker_image" "registration" {
resource "docker_container" "registration" {
name = "simple-registration"
image = docker_image.registration.image_id
network_mode = "bridge"
ports {
internal = 8443
external = 8443
Expand Down
5 changes: 2 additions & 3 deletions terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ terraform {
required_providers {
pingone = {
source = "pingidentity/pingone"
version = "~> 1.0.0"
version = ">= 1.1.1, < 2.0.0"
}
davinci = {
source = "pingidentity/davinci"
version = ">= 0.2.1, < 1.0.0"
version = "~> 0.4"
}
docker = {
source = "kreuzwerker/docker"
Expand All @@ -21,4 +21,3 @@ terraform {
backend "s3" {
}
}

Loading