Skip to content

Commit

Permalink
terraform fmt -recursive ./examples/
Browse files Browse the repository at this point in the history
  • Loading branch information
monde committed Sep 16, 2024
1 parent 5b82a38 commit 7684b9e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
8 changes: 4 additions & 4 deletions examples/data-sources/okta_log_stream/datasource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ resource "okta_log_stream" "test_splunk" {
}

data "okta_log_stream" "test_by_name" {
name = okta_log_stream.test_splunk.name
depends_on = [ okta_log_stream.test_splunk, okta_log_stream.test_aws ]
name = okta_log_stream.test_splunk.name
depends_on = [okta_log_stream.test_splunk, okta_log_stream.test_aws]
}

data "okta_log_stream" "test_by_id" {
id = okta_log_stream.test_aws.id
depends_on = [ okta_log_stream.test_splunk, okta_log_stream.test_aws ]
id = okta_log_stream.test_aws.id
depends_on = [okta_log_stream.test_splunk, okta_log_stream.test_aws]
}
6 changes: 3 additions & 3 deletions examples/resources/okta_group_owner/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resource "okta_group" "test" {
}

resource "okta_group_owner" "test" {
group_id = okta_group.test.id
id_of_group_owner = okta_user.test.id
type = "USER"
group_id = okta_group.test.id
id_of_group_owner = okta_user.test.id
type = "USER"
}
20 changes: 10 additions & 10 deletions examples/resources/okta_log_stream/basic.tf
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"
}
}
20 changes: 10 additions & 10 deletions examples/resources/okta_log_stream/basic_updated.tf
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"
}
}

0 comments on commit 7684b9e

Please sign in to comment.