-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: console prefix added to all resources
- Loading branch information
Showing
77 changed files
with
742 additions
and
698 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,7 +94,7 @@ provider "conduktor" { | |
} | ||
# register an external user bob with PLATFORM.userView permission | ||
resource "conduktor_user_v2" "bob" { | ||
resource "conduktor_console_user_v2" "bob" { | ||
name = "[email protected]" | ||
spec { | ||
firstname = "Bob" | ||
|
@@ -109,7 +109,7 @@ resource "conduktor_user_v2" "bob" { | |
} | ||
# create a group with Bob as a member | ||
resource "conduktor_group_v2" "qa" { | ||
resource "conduktor_console_group_v2" "qa" { | ||
name = "qa" | ||
spec { | ||
display_name = "QA team" | ||
|
@@ -153,10 +153,10 @@ Using environment variables `CDK_API_TOKEN` or `CDK_API_KEY`. | |
Use local user (usually admin) credentials pair. This will login against the API and use an ephemeral access token to make API calls. | ||
|
||
|
||
Using HCL `admin_email`/`admin_password` attributes | ||
Using HCL `admin_user`/`admin_password` attributes | ||
```hcl | ||
provider "conduktor" { | ||
admin_email = "[email protected]" | ||
admin_user = "[email protected]" | ||
admin_password = "admin-password" | ||
} | ||
``` | ||
|
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,12 +1,12 @@ | ||
--- | ||
page_title: "Conduktor : conduktor_group_v2 " | ||
page_title: "Conduktor : conduktor_console_group_v2 " | ||
subcategory: "iam/v2" | ||
description: |- | ||
Resource for managing Conduktor groups. | ||
This resource allows you to create, read, update and delete groups in Conduktor. | ||
--- | ||
|
||
# conduktor_group_v2 | ||
# conduktor_console_group_v2 | ||
|
||
Resource for managing Conduktor groups. | ||
This resource allows you to create, read, update and delete groups in Conduktor. | ||
|
@@ -15,7 +15,7 @@ This resource allows you to create, read, update and delete groups in Conduktor. | |
|
||
### Simple group without members or permissions | ||
```terraform | ||
resource "conduktor_group_v2" "example" { | ||
resource "conduktor_console_group_v2" "example" { | ||
name = "simple-group" | ||
spec { | ||
display_name = "Simple Group" | ||
|
@@ -26,7 +26,7 @@ resource "conduktor_group_v2" "example" { | |
|
||
### Complex group with members, external reference and permissions | ||
```terraform | ||
resource "conduktor_user_v2" "user1" { | ||
resource "conduktor_console_user_v2" "user1" { | ||
name = "[email protected]" | ||
spec { | ||
firstname = "User" | ||
|
@@ -35,13 +35,13 @@ resource "conduktor_user_v2" "user1" { | |
} | ||
} | ||
resource "conduktor_group_v2" "example" { | ||
resource "conduktor_console_group_v2" "example" { | ||
name = "complex-group" | ||
spec { | ||
display_name = "Complex group" | ||
description = "Complex group description" | ||
external_groups = ["sso-group1"] | ||
members = [conduktor_user_v2.user1.name] | ||
members = [conduktor_console_user_v2.user1.name] | ||
permissions = [ | ||
{ | ||
resource_type = "PLATFORM" | ||
|
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,12 +1,12 @@ | ||
--- | ||
page_title: "Conduktor : conduktor_user_v2 " | ||
page_title: "Conduktor : conduktor_console_user_v2 " | ||
subcategory: "iam/v2" | ||
description: |- | ||
Resource for managing Conduktor users. | ||
This resource allows you to create, read, update and delete users in Conduktor. | ||
--- | ||
|
||
# conduktor_user_v2 | ||
# conduktor_console_user_v2 | ||
|
||
Resource for managing Conduktor users. | ||
This resource allows you to create, read, update and delete users in Conduktor. | ||
|
@@ -15,7 +15,7 @@ This resource allows you to create, read, update and delete users in Conduktor. | |
|
||
### Simple user without permissions | ||
```terraform | ||
resource "conduktor_user_v2" "example" { | ||
resource "conduktor_console_user_v2" "example" { | ||
name = "[email protected]" | ||
spec { | ||
firstname = "Bob" | ||
|
@@ -26,7 +26,7 @@ resource "conduktor_user_v2" "example" { | |
|
||
### Complex user with permissions | ||
```terraform | ||
resource "conduktor_user_v2" "example" { | ||
resource "conduktor_console_user_v2" "example" { | ||
name = "[email protected]" | ||
spec { | ||
firstname = "Bob" | ||
|
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,4 +1,4 @@ | ||
resource "conduktor_user_v2" "user1" { | ||
resource "conduktor_console_user_v2" "user1" { | ||
name = "[email protected]" | ||
spec { | ||
firstname = "User" | ||
|
@@ -7,13 +7,13 @@ resource "conduktor_user_v2" "user1" { | |
} | ||
} | ||
|
||
resource "conduktor_group_v2" "example" { | ||
resource "conduktor_console_group_v2" "example" { | ||
name = "complex-group" | ||
spec { | ||
display_name = "Complex group" | ||
description = "Complex group description" | ||
external_groups = ["sso-group1"] | ||
members = [conduktor_user_v2.user1.name] | ||
members = [conduktor_console_user_v2.user1.name] | ||
permissions = [ | ||
{ | ||
resource_type = "PLATFORM" | ||
|
2 changes: 1 addition & 1 deletion
2
...es/resources/conduktor_group_v2/simple.tf → ...rces/conduktor_console_group_v2/simple.tf
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
2 changes: 1 addition & 1 deletion
2
...urces/conduktor_kafka_cluster_v2/aiven.tf → ...nduktor_console_kafka_cluster_v2/aiven.tf
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
2 changes: 1 addition & 1 deletion
2
...ces/conduktor_kafka_cluster_v2/aws_msk.tf → ...uktor_console_kafka_cluster_v2/aws_msk.tf
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
2 changes: 1 addition & 1 deletion
2
...s/conduktor_kafka_cluster_v2/confluent.tf → ...tor_console_kafka_cluster_v2/confluent.tf
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
2 changes: 1 addition & 1 deletion
2
...ces/conduktor_kafka_cluster_v2/gateway.tf → ...uktor_console_kafka_cluster_v2/gateway.tf
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
2 changes: 1 addition & 1 deletion
2
...rces/conduktor_kafka_cluster_v2/simple.tf → ...duktor_console_kafka_cluster_v2/simple.tf
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
6 changes: 3 additions & 3 deletions
6
...s/conduktor_kafka_connect_v2/basicAuth.tf → ...tor_console_kafka_connect_v2/basicAuth.tf
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
6 changes: 3 additions & 3 deletions
6
...conduktor_kafka_connect_v2/bearerToken.tf → ...r_console_kafka_connect_v2/bearerToken.tf
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
2 changes: 1 addition & 1 deletion
2
...rces/conduktor_kafka_connect_v2/import.tf → ...duktor_console_kafka_connect_v2/import.tf
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,4 +1,4 @@ | ||
import { | ||
to = conduktor_kafka_connect_v2.example | ||
to = conduktor_console_kafka_connect_v2.example | ||
id = "mini-cluster/import-connect" # Import "import-connect" Connect server for "mini-cluster" Kafka cluster | ||
} |
Oops, something went wrong.