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

[CC-5321] Add premium to Consul Cluster tier's description #537

Merged
merged 2 commits into from
Jun 23, 2023
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
3 changes: 3 additions & 0 deletions .changelog/537.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
Add "premium" to descriptions about Consul Cluster tier
```
2 changes: 1 addition & 1 deletion docs/data-sources/consul_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ If a project is not configured in the HCP Provider config block, the oldest proj
- `self_link` (String) A unique URL identifying the HCP Consul cluster.
- `size` (String) The t-shirt size representation of each server VM that this Consul cluster is provisioned with. Valid option for development tier - `x_small`. Valid options for other tiers - `small`, `medium`, `large`. For more details - https://cloud.hashicorp.com/pricing/consul
- `state` (String) The state of the HCP Consul cluster.
- `tier` (String) The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard` and `plus` are available at this time.
- `tier` (String) The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard`, `plus`, and `premium` are available at this time.

<a id="nestedblock--timeouts"></a>
### Nested Schema for `timeouts`
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/consul_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ resource "hcp_consul_cluster" "example" {

- `cluster_id` (String) The ID of the HCP Consul cluster.
- `hvn_id` (String) The ID of the HVN this HCP Consul cluster is associated to.
- `tier` (String) The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard` and `plus` are available at this time. See [pricing information](https://www.hashicorp.com/products/consul/pricing).
- `tier` (String) The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard`, `plus`, and `premium` are available at this time. See [pricing information](https://www.hashicorp.com/products/consul/pricing).

### Optional

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/data_source_consul_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ If a project is not configured in the HCP Provider config block, the oldest proj
Computed: true,
},
"tier": {
Description: "The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard` and `plus` are available at this time.",
Description: "The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard`, `plus`, and `premium` are available at this time.",
Type: schema.TypeString,
Computed: true,
},
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/resource_consul_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func resourceConsulCluster() *schema.Resource {
ValidateDiagFunc: validateSlugID,
},
"tier": {
Description: "The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard` and `plus` are available at this time. See [pricing information](https://www.hashicorp.com/products/consul/pricing).",
Description: "The tier that the HCP Consul cluster will be provisioned as. Only `development`, `standard`, `plus`, and `premium` are available at this time. See [pricing information](https://www.hashicorp.com/products/consul/pricing).",
Type: schema.TypeString,
Required: true,
ForceNew: true,
Expand Down