Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
remilapeyre committed Sep 23, 2022
1 parent 3f2a7e4 commit e4160e4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
## 2.15.1 (Unreleased)
## 2.16.0 (September 24, 2022)

NEW FEATURES:

* The `consul_peering` and `consul_peering_token` resources can now be used to manage Consul Cluster Peering configuration ([#309](https://github.com/hashicorp/terraform-provider-consul/pull/309)).
* The `consul_peering` and `consul_peerings` datasources can now be used to introspect Consul Cluster Peering configuration ([#309](https://github.com/hashicorp/terraform-provider-consul/pull/309)).

IMPROVEMENTS:

* The `consul_acl_token_secret` datasource now supports reading tokens in a Consul Admin Partition ([#315](https://github.com/hashicorp/terraform-provider-consul/pull/315)).
* The `consul_acl_token_secret_id` datasource now supports reading tokens in a Consul Admin Partition ([#315](https://github.com/hashicorp/terraform-provider-consul/pull/315)).

## 2.15.1 (April 11, 2022)

BUG FIXES:

Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/acl_token_secret_id.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ The following arguments are supported:

* `accessor_id` - (Required) The accessor ID of the ACL token.
* `namespace` - (Optional, Enterprise Only) The namespace to lookup the token.
* `partition` - (Optional, Enterprise Only) The partition to lookup the token.
* `pgp_key` - (Optional) Either a base-64 encoded PGP public key, or a keybase
username in the form `keybase:some_person_that_exists`. **If you do not set this
argument, the token secret ID will be written as plain text in the Terraform
Expand Down
3 changes: 2 additions & 1 deletion docs/data-sources/peering.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ data "consul_peering" "basic" {

### Optional

- `datacenter` (String)
- `partition` (String)

### Read-Only

- `deleted_at` (String)
- `exported_service_count` (Number)
- `id` (String) The ID of this resource.
- `imported_service_count` (Number)
- `meta` (Map of String)
- `peer_ca_pems` (List of String)
- `peer_id` (String)
Expand Down
3 changes: 2 additions & 1 deletion docs/data-sources/peerings.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ data "consul_peerings" "peers" {}

### Optional

- `datacenter` (String)
- `partition` (String)

### Read-Only
Expand All @@ -35,7 +34,9 @@ data "consul_peerings" "peers" {}
Read-Only:

- `deleted_at` (String)
- `exported_service_count` (Number)
- `id` (String)
- `imported_service_count` (Number)
- `meta` (Map of String)
- `name` (String)
- `partition` (String)
Expand Down
5 changes: 3 additions & 2 deletions docs/resources/peering.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,15 @@ resource "consul_peering" "eu-us" {

### Optional

- `datacenter` (String) Specifies the datacenter where the peering is established. Defaults to the agent's datacenter when not specified.
- `meta` (Map of String) Specifies KV metadata to associate with the peering. This parameter is not required and does not directly impact the cluster peering process.
- `token` (String) Specifies the ACL token to use in the request. Takes precedence over the token used by the provider.
- `partition` (String)

### Read-Only

- `deleted_at` (String)
- `exported_service_count` (Number)
- `id` (String) The ID of this resource.
- `imported_service_count` (Number)
- `peer_ca_pems` (List of String)
- `peer_id` (String)
- `peer_server_addresses` (List of String)
Expand Down
2 changes: 0 additions & 2 deletions docs/resources/peering_token.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,8 @@ resource "consul_peering_token" "token" {

### Optional

- `datacenter` (String) Specifies the datacenter where the peering token is generated. Defaults to the agent's datacenter when not specified.
- `meta` (Map of String) Specifies KV metadata to associate with the peering. This parameter is not required and does not directly impact the cluster peering process.
- `partition` (String)
- `token` (String) Specifies the ACL token to use in the request. Takes precedence over the token used by the provider.

### Read-Only

Expand Down

0 comments on commit e4160e4

Please sign in to comment.