From 1c75a07cb3840cc54729a8cf36fd2a5d1fead9c9 Mon Sep 17 00:00:00 2001 From: Patrick Bernal Date: Fri, 16 Oct 2020 11:46:08 -0400 Subject: [PATCH] fix typo (#712) host_catalog_id was doubled in hcl code snippet. --- website/content/docs/common-workflows/manage-targets.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/common-workflows/manage-targets.mdx b/website/content/docs/common-workflows/manage-targets.mdx index 9a916b7c0b..add7439ea8 100644 --- a/website/content/docs/common-workflows/manage-targets.mdx +++ b/website/content/docs/common-workflows/manage-targets.mdx @@ -156,7 +156,7 @@ resource "boundary_host_set" "postgres" { type = "static" name = "postgres" description = "Host set for postgres" - host_catalog_id = host_catalog_id = "hcst_1234567890" + host_catalog_id = "hcst_1234567890" // taken from the Terraform example above host_ids = [ boundary_host.postgres.id ]