Skip to content

Commit

Permalink
re-adds Okta Social Login variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ksatirli committed Jul 28, 2024
1 parent 94084ba commit befff30
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ For more information, including detailed usage guidelines, see the [Terraform do
| management_region_aws | AWS-specific `Management` Region Identifier. | `string` | yes |
| okta_api_token | This is the API token to interact with your Okta organization. | `string` | yes |
| okta_org_name | This is the organization name of your Okta account. | `string` | yes |
| okta_social_login_github_client_id | Okta Social Login GitHub Client ID. | `string` | yes |
| okta_social_login_github_client_secret | Okta Social Login GitHub Client Secret. | `string` | yes |
| project_identifier | Human-readable Project Identifier. | `string` | yes |
| tfe_team_token_viewers | HCP Terraform `viewers` Team Token. | `string` | yes |
| okta_backoff | Whether to use exponential back off strategy for rate limits. | `bool` | no |
Expand Down
20 changes: 10 additions & 10 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ variable "okta_base_url" {
default = "okta.com" # generally either `okta.com` or `oktapreview.com`, but other values are possible (specifically: PubSec settings)
}

# variable "okta_social_login_github_client_id" {
# type = string
# description = "Client ID of GitHub Application for Okta Social Login."
# }
#
# variable "okta_social_login_github_client_secret" {
# type = string
# description = "Client Secret of GitHub Application for Okta Social Login."
# sensitive = true
# }
variable "okta_social_login_github_client_id" {
type = string
description = "Okta Social Login GitHub Client ID."
}

variable "okta_social_login_github_client_secret" {
type = string
description = "Okta Social Login GitHub Client Secret."
sensitive = true
}

variable "password_recipe" {
type = object({
Expand Down

0 comments on commit befff30

Please sign in to comment.