Skip to content

Releases: hashicorp/terraform-provider-hcp

v0.19.0

28 Oct 00:05
Compare
Choose a tag to compare
v0.19.0 Pre-release
Pre-release

0.19.0 (October 25, 2021)

IMPROVEMENTS:

  • resource/hvn: Add CIDR Validator that matches backend validator (#214)
  • resource/hcp_aws_network_peering: Update source channel with metadata (#213)
  • docs: Add HCP arch image and documentation link (#212)
  • docs: Rearrange banners in documentation for consistency (#211)

v0.17.0

23 Sep 15:19
Compare
Choose a tag to compare
v0.17.0 Pre-release
Pre-release

0.17.0 (September 23, 2021)

IMPROVEMENTS:

  • provider: Bump hcp-sdk-go dependency (#199)

FEATURES:

  • New data source hcp_packer_image (#194)
  • New data source hcp_packer_iteration (#194)

v0.14.0

13 Aug 17:28
Compare
Choose a tag to compare
v0.14.0 Pre-release
Pre-release

0.14.0 (August 13, 2021)

FEATURES:

  • resource/hcp_consul_cluster: Add size upgrade field for consul cluster update (#168)

IMPROVEMENTS:

  • provider: Add HCP status check to run before TF commands (#184)
  • provider: Bump github.com/go-openapi/runtime dependency (#183)

v0.13.0

06 Aug 22:52
Compare
Choose a tag to compare
v0.13.0 Pre-release
Pre-release

0.13.0 (August 06, 2021)

FEATURES

  • New data source packer_image_iteration (#169) in private beta

v0.12.0

04 Aug 19:32
Compare
Choose a tag to compare
v0.12.0 Pre-release
Pre-release

0.12.0 (August 04, 2021)

FEATURES:

  • resource/hcp_vault_cluster: Add starter_small cluster tier (#178)

IMPROVEMENTS:

  • provider: Bump terraform-plugin-sdk/v2 dependency (#157)
  • provider: Bump go-openapi/runtime dependency (#140)
  • provider: Bump google/uuid dependency (#164)
  • docs: Update Consul docs to include hcp_hvn_peering_connection (#176)

v0.10.0

15 Jul 22:04
Compare
Choose a tag to compare
v0.10.0 Pre-release
Pre-release

0.10.0 (July 15, 2021)

FIXES:

  • resource/hcp_consul_cluster: Fix terraform updates for min_consul_version (#161)

IMPROVEMENTS:

  • docs: Add CIDR guidance to HVN resource documentation (#160)
  • docs: Add design doc on networking resources (#159)

v0.9.0

30 Jun 21:07
Compare
Choose a tag to compare
v0.9.0 Pre-release
Pre-release

IMPROVEMENTS:

  • resource/hcp_vault_cluster: add update functionality to Vault cluster (#152)
  • docs: updates to Consul root token doc (#153)
  • resource/hcp_consul_cluster: add auto peering for Consul Federation (#154)

v0.8.0

18 Jun 23:27
Compare
Choose a tag to compare
v0.8.0 Pre-release
Pre-release

⚠️ Note: This version fixes a bug where the Consul and Vault clusters' *_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 options dev, standard_small, standard_medium, and standard_large (#144) (our first open-source contribution - thanks @waxb!)
  • resource/consul_cluster: plus is now available as a tier option (#148)
  • tests: expands acceptance test coverage to data sources and dependent resources (#135, #142, #150)

BREAKING CHANGES:

  • resource/consul_cluster: returns complete endpoint URLs (#145)
  • resource/vault_cluster: returns complete endpoint URLs (#145)

v0.7.0

07 Jun 18:36
Compare
Choose a tag to compare
v0.7.0 Pre-release
Pre-release

0.7.0 (June 07, 2021)

⚠️ Note: This version contains breaking changes to the 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 accept peer_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)

v0.6.1

03 Jun 23:43
Compare
Choose a tag to compare
v0.6.1 Pre-release
Pre-release

0.6.1 (June 03, 2021)

IMPROVEMENTS:

  • docs: updates banner on index page to warn of upcoming breaking changes (#134)
  • resource/hcp_consul_cluster_snapshot_test: add Consul cluster snapshot acceptance test (#126)