This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
layout: "okta" | ||
page_title: "Okta: okta_app_basic_auth" | ||
sidebar_current: "docs-okta-resource-app-basic-auth" | ||
description: |- | ||
Creates a Basic Auth Application. | ||
--- | ||
|
||
# okta_app_basic_auth | ||
|
||
Creates a Bsaic Auth Application. | ||
|
||
This resource allows you to create and configure a Basic Auth Application. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "okta_app_basic_auth" "example" { | ||
label = "Example" | ||
url = "https://example.com/#.html" | ||
auth_url = "https://example.com/auth.html" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `label` - (Required) The Application's display name. | ||
|
||
* `url` - (Optional) The URL of the sign-in page for this app. | ||
|
||
* `auth_url` - (Optional) The URL of the authenticating site for this app. | ||
|
||
## Attributes Reference | ||
|
||
* `id` - ID of the Application. | ||
|
||
* `label` - The Application's display name. | ||
|
||
* `url` - The URL of the sign-in page for basic auth app. | ||
|
||
* `auth_url` - The URL of the authenticating site for basic auth app. | ||
|
||
## Import | ||
|
||
A Basic Auth App can be imported via the Okta ID. | ||
|
||
``` | ||
$ terraform import okta_app_basic_auth.example <app id> | ||
``` |
This file contains 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