The static credential store resource allows you to configure a Boundary static credential store.
resource "boundary_scope" "org" {
name = "organization_one"
description = "global 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_credential_store_static" "example" {
name = "example_static_credential_store"
description = "My first static credential store!"
scope_id = boundary_scope.project.id
}
scope_id
(String) The scope for this credential store.description
(String) The static credential store description.name
(String) The static credential store name. Defaults to the resource name.id
(String) The ID of the static credential store.Import is supported using the following syntax:
terraform import boundary_credential_store_static.example_static_credential_store <my-id>