Releases: hashicorp/terraform-provider-hcp
v0.19.0
0.19.0 (October 25, 2021)
IMPROVEMENTS:
v0.17.0
v0.14.0
v0.13.0
v0.12.0
0.12.0 (August 04, 2021)
FEATURES:
- resource/hcp_vault_cluster: Add
starter_small
cluster tier (#178)
IMPROVEMENTS:
v0.10.0
v0.9.0
v0.8.0
*_endpoint_url
outputs did not return complete URLs. This may result in a breaking change for existing clusters whose endpoint URLs are already adjusted to be a full URL with string helpers.
Please remove any functions that adjust the output of the vault_private_endpoint_url
, vault_public_endpoint_url
, consul_private_endpoint_url
, and consul_public_endpoint_url
when upgrading to this version.
For example, your Vault provider configuration might need to change:
# before
provider "vault" {
address = join("", ["https://", hcp_vault_cluster.example.vault_public_endpoint_url, ":8200"])
}
# after
provider "vault" {
address = hcp_vault_cluster.example.vault_public_endpoint_url
}
IMPROVEMENTS:
- resource/vault_cluster:
tier
is now an optional input, with the optionsdev
,standard_small
,standard_medium
, andstandard_large
(#144) (our first open-source contribution - thanks @waxb!) - resource/consul_cluster:
plus
is now available as atier
option (#148) - tests: expands acceptance test coverage to data sources and dependent resources (#135, #142, #150)
BREAKING CHANGES:
v0.7.0
0.7.0 (June 07, 2021)
hcp_aws_transit_gateway_attachment
and hcp_aws_network_peering
resources and data sources. Please pin to the previous version and follow this migration guide when you're ready to migrate.
FEATURES:
- New resource
hcp_hvn_route
(#122)
IMPROVEMENTS:
- resource/hcp_aws_transit_gateway_attachment: released as Generally Available (#121)
BREAKING CHANGES:
- resource/hcp_aws_network_peering: now requires
peering_id
to be specified and doesn't acceptpeer_vpc_cidr_block
as input (#128) - datasource/hcp_aws_network_peering: no longer returns
peer_vpc_cidr_block
as output (#128) - resource/hcp_aws_transit_gateway_attachment: doesn't accept
destination_cidrs
as input (#128) - datasource/hcp_aws_transit_gateway_attachment: no longer returns
destination_cidrs
as output (#128)