Deprecated: use boundary_host_catalog_static
instead.
resource "boundary_scope" "org" {
name = "organization_one"
description = "My first scope!"
scope_id = boundary_scope.global.id
auto_create_admin_role = true
auto_create_default_role = true
}
resource "boundary_scope" "project" {
name = "project_one"
description = "My first scope!"
scope_id = boundary_scope.org.id
auto_create_admin_role = true
}
resource "boundary_host_catalog" "example" {
name = "My catalog"
description = "My first host catalog!"
type = "Static"
scope_id = boundary_scope.project.id
}
scope_id
(String) The scope ID in which the resource is created.type
(String) The host catalog type. Only static
is supported.description
(String) The host catalog description.name
(String) The host catalog name. Defaults to the resource name.id
(String) The ID of the host catalog.Import is supported using the following syntax:
terraform import boundary_host_catalog.foo <my-id>