Skip to content

Commit

Permalink
Merge pull request #163 from Venafi/updates-doc-for-au
Browse files Browse the repository at this point in the history
impr: Updates documentation for AU region
  • Loading branch information
luispresuelVenafi authored Feb 1, 2025
2 parents d10837b + db165f8 commit b525da4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
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

0 comments on commit b525da4

Please sign in to comment.