The auth method resource allows you to configure a Boundary auth_method.
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_auth_method" "password" {
scope_id = boundary_scope.org.id
type = "password"
}
scope_id
(String) The scope ID.type
(String) The resource type.description
(String) The auth method description.min_login_name_length
(Number, Deprecated) The minimum login name length.min_password_length
(Number, Deprecated) The minimum password length.name
(String) The auth method name. Defaults to the resource name.id
(String) The ID of the account.Import is supported using the following syntax:
terraform import boundary_auth_method.foo <my-id>