Typo in the "Manage-Targets" section

Where: https://www.boundaryproject.io/docs/common-workflows/manage-targets#define-a-host-set

What:

resource "boundary_host_set" "postgres" {
  type            = "static"
  name            = "postgres"
  description     = "Host set for postgres"
  host_catalog_id = host_catalog_id = "hcst_1234567890"

  // taken from the Terraform example above
  host_ids = [ boundary_host.postgres.id ]
}

Stanza parameter(?)

host_catalog_id = 

doubled “as chain”.

Thanks for this catch, @Wolfsrudel. Fix added here: https://github.com/hashicorp/boundary/pull/712

1 Like