Deprecated: use boundary_host_static
instead.
resource "boundary_scope" "org" {
name = "organization_one"
description = "My first scope!"
scope_id = "global"
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" "static" {
name = "My catalog"
description = "My first host catalog!"
type = "static"
scope_id = boundary_scope.project.id
}
resource "boundary_host" "example" {
type = "static"
name = "example_host"
description = "My first host!"
address = "10.0.0.1"
host_catalog_id = boundary_host_catalog.static.id
}
host_catalog_id
(String)type
(String) The type of hostaddress
(String) The static address of the host resource as <IP>
(note: port assignment occurs in the target resource definition, do not add :port here) or a domain name.description
(String) The host description.name
(String) The host name. Defaults to the resource name.id
(String) The ID of the host.Import is supported using the following syntax:
terraform import boundary_host.foo <my-id>