From 5ced785f2fc8e37fc6685c296298a54b1c54dd86 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Fri, 10 May 2024 09:19:58 -0400 Subject: [PATCH] docs: fix typo in HCP Packer artifact/version docs In the full example for both the hcp-packer-artifact and hcp-packer-version the hcp-packer-version reference in the example template was mistakenly spelled as "hcp_packer_version", which won't work, so we fix that typo here. --- website/content/docs/datasources/hcp/hcp-packer-artifact.mdx | 2 +- website/content/docs/datasources/hcp/hcp-packer-version.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/docs/datasources/hcp/hcp-packer-artifact.mdx b/website/content/docs/datasources/hcp/hcp-packer-artifact.mdx index 0261242a8..e0fc58c03 100644 --- a/website/content/docs/datasources/hcp/hcp-packer-artifact.mdx +++ b/website/content/docs/datasources/hcp/hcp-packer-artifact.mdx @@ -67,7 +67,7 @@ data "hcp-packer-version" "hardened-source" { # region to disambiguate. data "hcp-packer-artifact" "example" { bucket_name = "hardened-ubuntu-16-04" - version_fingerprint = data.hcp_packer_version.hardened-source.fingerprint + version_fingerprint = data.hcp-packer-version.hardened-source.fingerprint platform = "aws" region = "us-east-1" } diff --git a/website/content/docs/datasources/hcp/hcp-packer-version.mdx b/website/content/docs/datasources/hcp/hcp-packer-version.mdx index 31b288ca4..b84efdf40 100644 --- a/website/content/docs/datasources/hcp/hcp-packer-version.mdx +++ b/website/content/docs/datasources/hcp/hcp-packer-version.mdx @@ -64,7 +64,7 @@ data "hcp-packer-version" "hardened-source" { # region to disambiguate. data "hcp-packer-artifact" "example" { bucket_name = "hardened-ubuntu-16-04" - version_fingerprint = data.hcp_packer_version.hardened-source.fingerprint + version_fingerprint = data.hcp-packer-version.hardened-source.fingerprint platform = "aws" region = "us-east-1" }