Skip to content

Commit

Permalink
ci: Prepare for the v0.8.1 release (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
wai-wong-edb authored Feb 29, 2024
1 parent 2a004e7 commit 1935d29
Show file tree
Hide file tree
Showing 49 changed files with 66 additions and 65 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.8.1 (February 29. 2024)
Features:
* Updated access key requirements documentation

## v0.8.0 (February 29. 2024)
Features:
* New access keys authorisation support using provider resource or environment variable
Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOSTNAME=registry.terraform.io
NAMESPACE=EnterpriseDB
NAME=biganimal
BINARY=terraform-provider-${NAME}
VERSION=0.8.0
VERSION=0.8.1

# Figure out the OS and ARCH of the
# builder machine
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/pgd.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
6 changes: 2 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Use the navigation to the left to read about the available provider resources an
* A BigAnimal account with an organization set up. If you don't already have a BigAnimal account,
see [Getting started with the BigAnimal free trial.](https://www.enterprisedb.com/docs/biganimal/latest/free_trial/)
* [Terraform](https://www.terraform.io/downloads.html) version 0.13.x or later.
* A BigAnimal API token (https://www.enterprisedb.com/docs/biganimal/latest/reference/api/#using-the-get-token-script)
* A strongly recommended BigAnimal Access key (https://www.enterprisedb.com/docs/biganimal/latest/reference/access_key/) or a BigAnimal API token (https://www.enterprisedb.com/docs/biganimal/latest/reference/api/#using-the-get-token-script)

## Example Usage
```terraform
Expand All @@ -28,20 +28,18 @@ provider "biganimal" {
// in an environment variable then the access key set in the environment variable
// will take priority and be used
ba_access_key = "<redacted>"
//ba_api_uri = "https://portal.biganimal.com/api/v3" // Optional
}
# Manage the resources
```

## Environment Variables

Credentials can be provided by using the `BA_BEARER_TOKEN` or `BA_ACCESS_KEY` and optionally `BA_API_URI` environment variables.
Credentials can be provided by using the `BA_BEARER_TOKEN` or `BA_ACCESS_KEY` environment variables.

<!-- schema generated by tfplugindocs -->
## Schema

### Optional

- `ba_access_key` (String) BigAnimal Access Key
- `ba_api_uri` (String) BigAnimal API URL
- `ba_bearer_token` (String) BigAnimal Bearer Token
2 changes: 1 addition & 1 deletion docs/resources/aws_connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/azure_connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -125,7 +125,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/faraway_replica.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -102,7 +102,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
24 changes: 12 additions & 12 deletions docs/resources/pgd.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -109,7 +109,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -277,7 +277,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -379,7 +379,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -553,7 +553,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -652,7 +652,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -820,7 +820,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -922,7 +922,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1096,7 +1096,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1195,7 +1195,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1363,7 +1363,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1469,7 +1469,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/region.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_aws_connection/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_cluster/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_pgd/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_projects/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_region/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
1 change: 0 additions & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ provider "biganimal" {
// in an environment variable then the access key set in the environment variable
// will take priority and be used
ba_access_key = "<redacted>"
//ba_api_uri = "https://portal.biganimal.com/api/v3" // Optional
}
# Manage the resources
2 changes: 1 addition & 1 deletion examples/resources/biganimal_aws_connection/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/biganimal_azure_connection/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/biganimal_cluster/ha/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.0"
version = "0.8.1"
}
random = {
source = "hashicorp/random"
Expand Down
Loading

0 comments on commit 1935d29

Please sign in to comment.