Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
Signed-off-by: Giuseppe Maxia <[email protected]>
  • Loading branch information
Giuseppe Maxia committed Oct 25, 2023
1 parent f64227a commit 08c3cb6
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion website/docs/r/org_ldap.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Supported in provider *v3.8+*

-> **Note:** This resource requires system administrator privileges.

## Example Usage
## Example Usage 1 - Custom configuration

```hcl
provider "vcd" {
Expand Down Expand Up @@ -80,6 +80,20 @@ resource "vcd_org_ldap" "my-org-ldap" {
}
```

## Example Usage 2 - Using system configuration

```hcl
data "vcd_org" "my-org" {
name = "my-org"
}
resource "vcd_org_ldap" "my-org-ldap" {
org_id = data.vcd_org.my-org.id
ldap_mode = "SYSTEM"
custom_user_ou = "ou=Foo,dc=domain,dc=local base DN"
}
```

## Argument Reference

The following arguments are supported:
Expand Down

0 comments on commit 08c3cb6

Please sign in to comment.