Skip to content

Commit

Permalink
Fix wrong doc parameters in repo conf auth (#563)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcmjunior authored Aug 21, 2024
1 parent 6428f6e commit da3c9ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/resources/repository_conf_auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Manages Repository Analysis Configuration. This resource allows configuring both
resource "cyral_repository_conf_auth" "some_resource_name" {
repository_id = ""
allow_native_auth = true
client_tls = "enable|disable|enabledAndVerifyCertificate"
client_tls = "enable|disable"
identity_provider = ""
repo_tls = "enable|disable|enabledAndVerifyCertificate"
repo_tls = "enable|disable|enableAndVerifyCert"
}
```

Expand Down
4 changes: 2 additions & 2 deletions examples/resources/cyral_repository_conf_auth/resource.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
resource "cyral_repository_conf_auth" "some_resource_name" {
repository_id = ""
allow_native_auth = true
client_tls = "enable|disable|enabledAndVerifyCertificate"
client_tls = "enable|disable"
identity_provider = ""
repo_tls = "enable|disable|enabledAndVerifyCertificate"
repo_tls = "enable|disable|enableAndVerifyCert"
}

0 comments on commit da3c9ad

Please sign in to comment.