The scope data source allows you to discover an existing Boundary scope by name. Please note that the Global scope will always have an id of "global", and does not need to be discovered with this data source.
# Retrieve the ID of a Boundary project
data "boundary_scope" "org" {
name = "SecOps"
scope_id = "global"
}
data "boundary_scope" "project" {
name = "2111"
scope_id = data.boundary_scope.id
}
name
(String) The name of the scope to retrieve.scope_id
(String) The parent scope ID that will be queried for the scope.description
(String) The description of the retrieved scope.id
(String) The ID of the retrieved scope.