-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2089 from okta/prep_v4_11_0
Prep v4.11.0
- Loading branch information
Showing
13 changed files
with
132 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
- package-ecosystem: gomod | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
ignore: | ||
- dependency-name: github.com/hashicorp/terraform-plugin-docs | ||
versions: | ||
- ">=0.14.0" |
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,49 @@ | ||
--- | ||
page_title: "Resource: okta_group_owner" | ||
description: |- | ||
Manages group owner resource. | ||
--- | ||
|
||
# Resource: okta_group_owner | ||
|
||
Manages group owner resource. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "okta_user" "test" { | ||
first_name = "TestAcc" | ||
last_name = "Smith" | ||
login = "[email protected]" | ||
email = "[email protected]" | ||
} | ||
resource "okta_group" "test" { | ||
name = "testAcc_replace_with_uuid" | ||
} | ||
resource "okta_group_owner" "test" { | ||
group_id = okta_group.test.id | ||
id_of_group_owner = okta_user.test.id | ||
type = "USER" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `group_id` (String) The id of the group | ||
- `id_of_group_owner` (String) The user id of the group owner | ||
- `type` (String) The entity type of the owner. Enum: "GROUP" "USER" | ||
|
||
### Read-Only | ||
|
||
- `display_name` (String) The display name of the group owner | ||
- `id` (String) The id of the group owner resource | ||
- `origin_id` (String) The ID of the app instance if the originType is APPLICATION. This value is NULL if originType is OKTA_DIRECTORY. | ||
- `origin_type` (String) The source where group ownership is managed. Enum: "APPLICATION" "OKTA_DIRECTORY" | ||
- `resolved` (Boolean) If originType is APPLICATION, this parameter is set to FALSE until the owner's originId is reconciled with an associated Okta 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
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
resource "okta_log_stream" "eventbridge" { | ||
name = "testAcc_replace_with_uuid EventBridge" | ||
type = "aws_eventbridge" | ||
status = "ACTIVE" | ||
name = "testAcc_replace_with_uuid EventBridge" | ||
type = "aws_eventbridge" | ||
status = "ACTIVE" | ||
settings { | ||
account_id = "123456789012" | ||
region = "eu-west-3" | ||
account_id = "123456789012" | ||
region = "eu-west-3" | ||
event_source_name = "testAcc_replace_with_uuid" | ||
} | ||
} | ||
|
||
resource "okta_log_stream" "splunk" { | ||
name = "testAcc_replace_with_uuid Splunk" | ||
type = "splunk_cloud_logstreaming" | ||
status = "INACTIVE" | ||
name = "testAcc_replace_with_uuid Splunk" | ||
type = "splunk_cloud_logstreaming" | ||
status = "INACTIVE" | ||
settings { | ||
host = "acme.splunkcloud.com" | ||
host = "acme.splunkcloud.com" | ||
edition = "aws" | ||
token = "58A7C8D6-4E2F-4C3B-8F5B-D4E2F3A4B5C6" | ||
token = "58A7C8D6-4E2F-4C3B-8F5B-D4E2F3A4B5C6" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
resource "okta_log_stream" "eventbridge" { | ||
name = "testAcc_replace_with_uuid EventBridge Updated" | ||
type = "aws_eventbridge" | ||
status = "INACTIVE" | ||
name = "testAcc_replace_with_uuid EventBridge Updated" | ||
type = "aws_eventbridge" | ||
status = "INACTIVE" | ||
settings { | ||
account_id = "123456789012" | ||
region = "eu-west-3" | ||
account_id = "123456789012" | ||
region = "eu-west-3" | ||
event_source_name = "testAcc_replace_with_uuid" | ||
} | ||
} | ||
|
||
resource "okta_log_stream" "splunk" { | ||
name = "testAcc_replace_with_uuid Splunk Updated" | ||
type = "splunk_cloud_logstreaming" | ||
status = "ACTIVE" | ||
name = "testAcc_replace_with_uuid Splunk Updated" | ||
type = "splunk_cloud_logstreaming" | ||
status = "ACTIVE" | ||
settings { | ||
host = "acme.splunkcloud.com" | ||
host = "acme.splunkcloud.com" | ||
edition = "aws" | ||
token = "58A7C8D6-4E2F-4C3B-8F5B-D4E2F3A4B5C6" | ||
token = "58A7C8D6-4E2F-4C3B-8F5B-D4E2F3A4B5C6" | ||
} | ||
} |
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
Oops, something went wrong.