From 475bda18e379253bd5bceca757214ef7f8e925a2 Mon Sep 17 00:00:00 2001 From: Jeff Malnick Date: Mon, 5 Oct 2020 08:54:06 -0700 Subject: [PATCH] docs: add account resource to domain model docs (#532) --- .../docs/concepts/domain-model/accounts.mdx | 15 +++++++++++++++ website/data/docs-navigation.js | 1 + 2 files changed, 16 insertions(+) create mode 100644 website/content/docs/concepts/domain-model/accounts.mdx diff --git a/website/content/docs/concepts/domain-model/accounts.mdx b/website/content/docs/concepts/domain-model/accounts.mdx new file mode 100644 index 0000000000..454c36a53c --- /dev/null +++ b/website/content/docs/concepts/domain-model/accounts.mdx @@ -0,0 +1,15 @@ +--- +layout: docs +page_title: Domain Model - Action +sidebar_title: Action +description: |- + The annatomy of a Boundary account +--- + +# Action + +A Boundary account is a resource that contains the login name and password for the password authentication method. Accounts are not users, but can be associated with users. A login name is a not a username and vice versa. Accounts are a special case for the password auth method because other auth methods already store account information (such as OIDC). + +## Attributes + +Accounts contain a `login name` and a `password`. diff --git a/website/data/docs-navigation.js b/website/data/docs-navigation.js index b9a13a6355..2da3357b7e 100644 --- a/website/data/docs-navigation.js +++ b/website/data/docs-navigation.js @@ -36,6 +36,7 @@ export default [ { category: 'domain-model', content: [ + 'accounts', 'actions', 'auth-methods', 'grants',