Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

impr: Updates documentation for AU region #163

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ automation will not be disrupted by token expiration.

If you are using Venafi Control Plane, verify the following:

- The Venafi Control Plane REST API at [https://api.venafi.cloud](https://api.venafi.cloud/vaas)
or [https://api.venafi.eu](https://api.venafi.eu/vaas) (if you have an EU account) is accessible from the system where
Terraform will run.
- The Venafi Control Plane REST API is accessible from the system where Terraform will run. Currently we support the following regions:
- [https://api.venafi.cloud](https://api.venafi.cloud/vaas) [US]
- [https://api.venafi.eu](https://api.venafi.eu/vaas) [EU]
- [https://api.au.venafi.cloud](https://api.au.venafi.cloud/vaas) [AU]
- You have successfully registered for a Venafi Control Plane account, have been granted at least the
`Resource Owner` role, and know your API key.
- A CA Account and Issuing Template exist and have been configured with:
Expand Down Expand Up @@ -196,6 +197,15 @@ for the provider in the `provider` block using the
zone = "Business App\\Enterprise CIT"
}
```
**Venafi Control Plane for AU**:

```text
provider "venafi" {
url = "https://api.au.venafi.cloud"
api_key = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
zone = "Business App\\Enterprise CIT"
}
```

The `venafi` provider has the following options:

Expand Down
16 changes: 16 additions & 0 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,22 @@ resource "venafi_certificate" "webserver" {
}
```

### AU tenants

```hcl
# Configure the Venafi provider with AU api url
provider "venafi" {
url = "https://api.au.venafi.cloud"
api_key = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
zone = "Business App\\Enterprise CIT"
}

# Generate a key pair and request a certificate
resource "venafi_certificate" "webserver" {
# ...
}
```

## Example Usage for Venafi Trust Protection Platform

Your Venafi administrator can provide you with the URL for the Trust Protection Platform REST API and grant you
Expand Down