mirror of
https://github.com/bitwarden/help
synced 2026-01-19 08:53:39 +00:00
Promote to Master (#748)
* initial commit
* adding quotes for the array error
* Create Gemfile
* Create Gemfile.lock
* add .nvmrc and .node-version
* removed /article from URL
* update links to work with netlify
* more fixed links
* link fixes
* update bad links
* Update netlify.toml
toml test for redirects
* article redirect
* link fixes
* Update index.html
* Update netlify.toml
* Update _config.yml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* add article back into URL for launch
* Update netlify.toml
* Update netlify.toml
* add order to categories front matter
* Update netlify.toml
* update
* sidemenu update
* Revert "sidemenu update"
This reverts commit 5441c3d35c.
* update order prop
* Navbar updates per Gary and compiler warnings
* font/style tweaks
* Update sidebar.html
* Stage Release Documentation (#739)
* initial drafts
* rewrite Custom Fields article to prioritize new context-menu option & better organize ancillary information
* edit
* edit
* Custom Field Context Menu & CAPTCHA item in release notes
* SSO relink event
* update rn
* small edits
* improve release notes titles
* fix side menu
* Edits courtest of mportune!
* update order
* link fixes
* link cleanup
* image updates and a link
* fix trailing slash
Co-authored-by: DanHillesheim <79476558+DanHillesheim@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
63f78e8979
commit
906e2ca0dd
@@ -5,10 +5,10 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [import]
|
||||
order: 09
|
||||
order: "09"
|
||||
---
|
||||
|
||||
This article defines the format you should use when manually conditioning a `.csv` or `.json` for import into Bitwarden. This format is identical to that used by `.csv` or `.json` files created by [Exporting your Bitwarden Vault]({% link _articles/account/export-your-data.md %}).
|
||||
This article defines the format you should use when manually conditioning a `.csv` or `.json` for import into Bitwarden. This format is identical to that used by `.csv` or `.json` files created by [Exporting your Bitwarden Vault]({{site.baseurl}}/article/export-your-data/).
|
||||
|
||||
Make sure that you're using the format for Personal Vaults or Organizations depending on your export/import operation, as they are slightly different.
|
||||
|
||||
|
||||
@@ -5,13 +5,13 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [import]
|
||||
order: 08
|
||||
order: "08"
|
||||
---
|
||||
|
||||
Vault data can be [exported]({% link _articles/account/export-your-data.md %}) in an encrypted JSON file. These exports are encrypted using your [account's encryption key]({% link _articles/account/account-encryption-key.md %}), which are generated on account creation and unique to each Bitwarden user account.
|
||||
Vault data can be [exported]({{site.baseurl}}/article/export-your-data/) in an encrypted JSON file. These exports are encrypted using your [account's encryption key]({{site.baseurl}}/article/account-encryption-key/), which are generated on account creation and unique to each Bitwarden user account.
|
||||
|
||||
{% callout warning %}
|
||||
[Rotating your account's encryption key]({% link _articles/account/account-encryption-key.md %}) will render an Encrypted Export impossible to decrypt. **If you rotate your account encryption key, replace any old files with new one that use the new encryption key.**
|
||||
[Rotating your account's encryption key]({{site.baseurl}}/article/account-encryption-key/) will render an Encrypted Export impossible to decrypt. **If you rotate your account encryption key, replace any old files with new one that use the new encryption key.**
|
||||
|
||||
Account Encryption Keys are unique to each Bitwarden user account, so you won't be able to import an Encrypted Export into a different account.
|
||||
{% endcallout %}
|
||||
@@ -42,7 +42,7 @@ Will look something like:
|
||||
|
||||
## Create an Encrypted Export
|
||||
|
||||
Creating an Encrypted Export follows the [normal export procedure]({% link _articles/account/export-your-data.md %}):
|
||||
Creating an Encrypted Export follows the [normal export procedure]({{site.baseurl}}/article/export-your-data/):
|
||||
|
||||
<ul class="nav nav-tabs" id="myTab" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
@@ -132,7 +132,7 @@ To create an encrypted export of your personal Vault data from the CLI, use the
|
||||
bw export my-master-password --output /users/me/documents/ --format encrypted_json
|
||||
```
|
||||
|
||||
For more detail, see our [CLI documentation]({% link _articles/miscellaneous/cli.md %}).
|
||||
For more detail, see our [CLI documentation]({{site.baseurl}}/article/cli/).
|
||||
|
||||
{% endcapture %}
|
||||
{{ cli_info | markdownify}}
|
||||
@@ -141,13 +141,13 @@ For more detail, see our [CLI documentation]({% link _articles/miscellaneous/cli
|
||||
|
||||
## Import an Encrypted Export
|
||||
|
||||
Importing an Encrypted Export follows the [normal import procedure]({% link _articles/importing/import-data.md %}), which can **only be done from the** [**Web Vault**](https://vault.bitwarden.com){:target="\_blank"}:
|
||||
Importing an Encrypted Export follows the [normal import procedure]({{site.baseurl}}/article/import-data/), which can **only be done from the** [**Web Vault**](https://vault.bitwarden.com){:target="\_blank"}:
|
||||
|
||||
1. In the Web Vault, select **Tools** from the top navigation bar.
|
||||
2. Select **Import Data** from the left-hand Tools menu.
|
||||
3. From the format dropdown, choose **Bitwarden (json)**.
|
||||
|
||||
{% callout success %}There is no import option specifically for Encrypted Exports. A handler will determine that the `.json` file is encrypted and attempt to decrypt the file using your [account's encryption key]({% link _articles/account/account-encryption-key.md %}).{% endcallout %}
|
||||
{% callout success %}There is no import option specifically for Encrypted Exports. A handler will determine that the `.json` file is encrypted and attempt to decrypt the file using your [account's encryption key]({{site.baseurl}}/article/account-encryption-key/).{% endcallout %}
|
||||
5. Select the **Choose File** button and add the file to import.
|
||||
|
||||
{% callout warning %}Import to Bitwarden can't check whether items in the file to import are duplicative of items in your Vault. This means that **importing multiple files will create duplicative** Vault items if an item is already in the Vault and in the file to import.{% endcallout %}
|
||||
|
||||
@@ -5,18 +5,18 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: true
|
||||
tags: [import]
|
||||
order: 01
|
||||
order: "01"
|
||||
---
|
||||
|
||||
Bitwarden provides a data import tool for easy migration from any password management solution to your personal Vault or Organization Vault. You can also use the data import tool to import from one Bitwarden Vault to another, or to import a Bitwarden [Encrypted Export]({% link _articles/importing/encrypted-export.md %}).
|
||||
Bitwarden provides a data import tool for easy migration from any password management solution to your personal Vault or Organization Vault. You can also use the data import tool to import from one Bitwarden Vault to another, or to import a Bitwarden [Encrypted Export]({{site.baseurl}}/article/encrypted-export/).
|
||||
|
||||
For a full list of supported import formats, see [What file formats does Bitwarden support for import?]({{site.baseurl}}/article/import-faqs/#q-what-file-formats-does-bitwarden-support-for-import), or use one of these articles for importing from the most popular solutions:
|
||||
|
||||
- [Import from LastPass]({% link _articles/importing/import-from-lastpass.md %})
|
||||
- [Import from 1Password]({% link _articles/importing/import-from-1password.md %})
|
||||
- [Import from Firefox]({% link _articles/importing/import-from-firefox.md %})
|
||||
- [Import from Google Chrome]({% link _articles/importing/import-from-chrome.md %})
|
||||
- [Import from Password Safe]({% link _articles/importing/import-from-passwordsafe.md %})
|
||||
- [Import from LastPass]({{site.baseurl}}/article/import-from-lastpass/)
|
||||
- [Import from 1Password]({{site.baseurl}}/article/import-from-1password/)
|
||||
- [Import from Firefox]({{site.baseurl}}/article/import-from-firefox/)
|
||||
- [Import from Google Chrome]({{site.baseurl}}/article/import-from-chrome/)
|
||||
- [Import from Password Safe]({{site.baseurl}}/article/import-from-passwordsafe/)
|
||||
|
||||
{% callout success %}
|
||||
**Not already signed up?** Choose from one of [Bitwarden's plans](https://bitwarden.com/pricing/business/){:target="\_blank"} and get started today:
|
||||
|
||||
@@ -5,7 +5,7 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [import, 1password]
|
||||
order: 03
|
||||
order: "03"
|
||||
---
|
||||
|
||||
Use this article for help exporting data from 1Passwords and importing into Bitwarden. 1Password data exports are available as `.1pif` or `.csv` files, depending on which client version and operating system you are using.
|
||||
|
||||
@@ -5,7 +5,7 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [import, chrome, opera, vivaldi, edge]
|
||||
order: 04
|
||||
order: "04"
|
||||
---
|
||||
|
||||
Use this article for help exporting data from Google Chrome and importing into Bitwarden.
|
||||
|
||||
@@ -5,7 +5,7 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [import, firefox]
|
||||
order: 05
|
||||
order: "05"
|
||||
---
|
||||
|
||||
Use this article for help exporting data from Firefox and importing into Bitwarden.
|
||||
|
||||
@@ -5,7 +5,7 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: true
|
||||
tags: [import, lastpass]
|
||||
order: 02
|
||||
order: "02"
|
||||
---
|
||||
|
||||
Use this article for help exporting data from LastPass and importing into Bitwarden.
|
||||
@@ -115,11 +115,11 @@ If you continue to have trouble locating the offending item using the data provi
|
||||
|
||||
### Maximum Collections Error
|
||||
|
||||
When importing Lastpass `.csv` exports to a [Free Organization]({% link _articles/plans-and-pricing/about-bitwarden-plans.md %}), you may observe the following error:
|
||||
When importing Lastpass `.csv` exports to a [Free Organization]({{site.baseurl}}/article/about-bitwarden-plans/), you may observe the following error:
|
||||
|
||||
{% image importing/lpcollectionserror.png Free Organization Max Collections Error%}
|
||||
|
||||
This error occurs when the Lastpass export contains 3 or more `grouping` values. The values in the `grouping` field are interpreted by Bitwarden as [Collections]({% link _articles/organizations/about-collections.md %}), however [Free Organizations]({% link _articles/plans-and-pricing/about-bitwarden-plans.md %}) are limited to only two Collections. The following `.csv`, for example, would cause this error:
|
||||
This error occurs when the Lastpass export contains 3 or more `grouping` values. The values in the `grouping` field are interpreted by Bitwarden as [Collections]({{site.baseurl}}/article/about-collections/), however [Free Organizations]({{site.baseurl}}/article/about-bitwarden-plans/) are limited to only two Collections. The following `.csv`, for example, would cause this error:
|
||||
|
||||
```
|
||||
url,username,password,totp,extra,name,grouping,fav
|
||||
|
||||
@@ -5,7 +5,7 @@ categories: [import-export]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [import, passwordsafe]
|
||||
order: 06
|
||||
order: "06"
|
||||
---
|
||||
|
||||
Use this article for help exporting data from Password Safe and importing into Bitwarden. Password Safe (V8) currently only supports exporting as `.csv` file. Older versions also supported `.xml`.
|
||||
@@ -35,7 +35,7 @@ Complete the following steps to export data from the Password Safe Desktop App:
|
||||
## Prepare exported file before import
|
||||
Currently we do not offer a specific importer for this type of file.
|
||||
|
||||
To prepare the exported file for import, please follow the instructions in this guide: [Condition a Bitwarden .csv or .json]({% link _articles/importing/condition-bitwarden-import.md %})
|
||||
To prepare the exported file for import, please follow the instructions in this guide: [Condition a Bitwarden .csv or .json]({{site.baseurl}}/article/condition-bitwarden-import/)
|
||||
|
||||
## Import to Bitwarden
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ featured: false
|
||||
popular: false
|
||||
hidden: true
|
||||
tags: [import, lastpass]
|
||||
order: 99
|
||||
order: "99"
|
||||
---
|
||||
## Bitwarden exclusive content: Making migration easy
|
||||
|
||||
@@ -44,8 +44,8 @@ Data imported into Bitwarden is defined as one of four item types:
|
||||
|
||||
Bitwarden currently limits the length of item fields to 1,000 characters, and Secure Notes to 10,000 characters. Items that exceed that criteria should be saved as separate files (text, key, pem, ssh, etc.) and added as attachments to an item.
|
||||
|
||||
- [More on Items](https://bitwarden.com/help/article/managing-items/)
|
||||
- [Attaching a file to an item](https://bitwarden.com/help/article/attachments/)
|
||||
- [More on Items]({{site.baseurl}}/article/managing-items/)
|
||||
- [Attaching a file to an item]({{site.baseurl}}/article/attachments/)
|
||||
|
||||
Gathering a full export of your data across your LastPass Organization may require assigning all shared folders to a single user, or performing multiple exports - one for each segment of shared folders.
|
||||
|
||||
@@ -55,9 +55,9 @@ Exported data from LastPass will contain data from both your Personal vault, as
|
||||
|
||||
Shared or company-level data is stored in a Bitwarden Organization. The best practice is to create this Organization first and import it directly, instead of importing the data into an individual account and then sharing it with the organization secondarily.
|
||||
|
||||
For more on creating a Bitwarden Organization, visit [this article.](https://bitwarden.com/help/article/about-organizations/)
|
||||
For more on creating a Bitwarden Organization, visit [this article.]({{site.baseurl}}/article/about-organizations/)
|
||||
|
||||
Self-hosted instances will need to create an Organization on the Bitwarden cloud instance to generate their [license key](https://bitwarden.com/host/) and can then proceed with [installing and configuring a Bitwarden Server instance.](https://bitwarden.com/help/article/install-on-premise/)
|
||||
Self-hosted instances will need to create an Organization on the Bitwarden cloud instance to generate their [license key](https://bitwarden.com/host/) and can then proceed with [installing and configuring a Bitwarden Server instance.]({{site.baseurl}}/article/install-on-premise/)
|
||||
|
||||
{%callout%}
|
||||
Self-hosting is available for Enterprise plans.
|
||||
@@ -67,15 +67,15 @@ Self-hosting is available for Enterprise plans.
|
||||
|
||||
Bitwarden Enterprise plans support Login with Single-Sign-On using either SAML 2.0 or OpenID Connect (OIDC).
|
||||
|
||||
Each Bitwarden Organization can configure one SSO provider. Configuration for this is located in the [Business Portal](https://bitwarden.com/help/article/about-business-portal/), accessible from the Web Vault by Organization Owners and Administrators.
|
||||
Each Bitwarden Organization can configure one SSO provider. Configuration for this is located in the [Business Portal]({{site.baseurl}}/article/about-business-portal/), accessible from the Web Vault by Organization Owners and Administrators.
|
||||
|
||||
For more details on Login with SSO configurations and examples of Identity Provider (IdP) settings and naming conventions, please visit [these help articles](https://bitwarden.com/help/article/about-sso/).
|
||||
For more details on Login with SSO configurations and examples of Identity Provider (IdP) settings and naming conventions, please visit [these help articles]({{site.baseurl}}/article/about-sso/).
|
||||
|
||||
### Enabling enterprise policies
|
||||
|
||||
Policies are found in the [Business Portal](https://bitwarden.com/help/article/about-business-portal/)
|
||||
Policies are found in the [Business Portal]({{site.baseurl}}/article/about-business-portal/)
|
||||
|
||||
Policies allow you to control the actions of users within your Organization. It is recommended to configure these policies prior to onboarding users. For a complete list and details for Enterprise Policies, please see our helpful article [here.](https://bitwarden.com/help/article/policies/)
|
||||
Policies allow you to control the actions of users within your Organization. It is recommended to configure these policies prior to onboarding users. For a complete list and details for Enterprise Policies, please see our helpful article [here.]({{site.baseurl}}/article/policies/)
|
||||
|
||||
## Importing data
|
||||
|
||||
@@ -88,9 +88,9 @@ Creating a Bitwarden specific CSV from your exported data
|
||||
|
||||
The best practice for most Organizations is to format your data into a Bitwarden CSV, or for advanced users, a Bitwarden JSON file for import into your Organization vault.
|
||||
|
||||
For instructions on shaping a Bitwarden specific import file, please refer to the guide [here.](https://bitwarden.com/help/article/condition-bitwarden-import/)
|
||||
For instructions on shaping a Bitwarden specific import file, please refer to the guide [here.]({{site.baseurl}}/article/condition-bitwarden-import/)
|
||||
|
||||
A collection of data import and export documentation is available [here.](https://bitwarden.com/help/import-export/) to assist with imports from additional sources.
|
||||
A collection of data import and export documentation is available [here.]({{site.baseurl}}/article/import-export/) to assist with imports from additional sources.
|
||||
|
||||
{%callout%}
|
||||
Importing multiple times will create duplicate records in your Bitwarden Vault.
|
||||
@@ -100,7 +100,7 @@ Importing multiple times will create duplicate records in your Bitwarden Vault.
|
||||
|
||||
Bitwarden supports a variety import formats from other password management platforms. Individual users can import their data into their Bitwarden Vault on their own, and does not require Administrative assistance.
|
||||
|
||||
For more on importing individual data, check out our helpful article [here.](https://bitwarden.com/help/import-export/)
|
||||
For more on importing individual data, check out our helpful article [here.]({{site.baseurl}}/article/import-export/)
|
||||
|
||||
## Onboarding users
|
||||
|
||||
@@ -108,15 +108,15 @@ Bitwarden supports both manual and automated user invitation and boarding. Best
|
||||
|
||||
### Manual onboarding
|
||||
|
||||
Manual boarding is done via the Web Vault. More information on manual user boarding can be found in this [helpful article](https://bitwarden.com/help/article/managing-users/)
|
||||
Manual boarding is done via the Web Vault. More information on manual user boarding can be found in this [helpful article]({{site.baseurl}}/article/managing-users/)
|
||||
|
||||
### Automated onboarding
|
||||
|
||||
Automated user boarding is also available when leveraging Bitwarden Directory Connector - a standalone application available in a [Desktop app](https://bitwarden.com/help/article/directory-sync-desktop/) and a [CLI tool](https://bitwarden.com/help/article/directory-sync-cli/) - synchronizing user and group information to the Bitwarden Organization. These users are automatically invited to join the Organization, and can be confirmed manually or automatically using the [Bitwarden CLI tool](https://bitwarden.com/help/article/cli/#confirm).
|
||||
Automated user boarding is also available when leveraging Bitwarden Directory Connector - a standalone application available in a [Desktop app]({{site.baseurl}}/article/directory-sync-desktop/) and a [CLI tool]({{site.baseurl}}/article/directory-sync-cli/) - synchronizing user and group information to the Bitwarden Organization. These users are automatically invited to join the Organization, and can be confirmed manually or automatically using the [Bitwarden CLI tool]({{site.baseurl}}/article/cli/#confirm).
|
||||
|
||||
- Learn more about how syncing works [here.](https://bitwarden.com/help/article/directory-sync/)
|
||||
- Discover how to configure user and group filters for Directory Connector [here.](https://bitwarden.com/help/article/user-group-filters/)
|
||||
- Documentation for multiple Directory Connector options is available [here.](https://bitwarden.com/help/directory-connector/)
|
||||
- Learn more about how syncing works [here.]({{site.baseurl}}/article/directory-sync/)
|
||||
- Discover how to configure user and group filters for Directory Connector [here.]({{site.baseurl}}/article/user-group-filters/)
|
||||
- Documentation for multiple Directory Connector options is available [here.]({{site.baseurl}}/article/directory-connector/)
|
||||
|
||||
## Sharing Collections and items
|
||||
|
||||
@@ -126,7 +126,7 @@ Bitwarden empowers Teams and Organizations to share sensitive data easily, secur
|
||||
|
||||
Collections organize secure items in many ways, including but not limited to: business function, group assignment, application access levels, or even security protocols. Collections perform the same functions as shared folders, allowing for consistent access control and sharing amongst groups of users.
|
||||
|
||||
Shared folders from LastPass can be imported as Collections into Bitwarden by using the Organization Import template found [here](https://bitwarden.com/help/files/bitwarden_export_org.csv) and placing the name of the shared folder in the Collection column.
|
||||
Shared folders from LastPass can be imported as Collections into Bitwarden by using the Organization Import template found [here]({{site.baseurl}}/article/files/bitwarden_export_org.csv) and placing the name of the shared folder in the Collection column.
|
||||
|
||||
Example LastPass Export:
|
||||
|
||||
@@ -138,7 +138,7 @@ Example Bitwarden Organization Import
|
||||
|
||||
Collections can be shared with both Groups and Individual users. Limiting the number of individual users that can access a Collection will make management more efficient for Administrators.
|
||||
|
||||
For more information on assigning Collections to Users and Groups, please refer to our help article [here.](https://bitwarden.com/help/article/about-collections/)
|
||||
For more information on assigning Collections to Users and Groups, please refer to our help article [here.]({{site.baseurl}}/article/about-collections/)
|
||||
|
||||
### Groups
|
||||
|
||||
@@ -146,7 +146,7 @@ Leveraging Groups for sharing is the most effective way to provide credential an
|
||||
|
||||
As a part of deployment preparations, it is possible to synchronize **just** groups from the LDAP directory before synchronization of Users begins, such that Collections can be assigned to Groups before users begin accessing Bitwarden.
|
||||
|
||||
For more information on filtering and synchronization of Users with the Bitwarden Directory Connector, please check out the article [here.](https://bitwarden.com/help/article/user-group-filters/)
|
||||
For more information on filtering and synchronization of Users with the Bitwarden Directory Connector, please check out the article [here.]({{site.baseurl}}/article/user-group-filters/)
|
||||
|
||||
### Permissions
|
||||
|
||||
@@ -165,7 +165,7 @@ Bitwarden uses an union of permissions to determine final access permissions for
|
||||
- User A is also a member of the Support Management group, which has access to the Support Collection, with read-write access.
|
||||
- In this scenario, User A will be able to read-write to the Collection.
|
||||
|
||||
More information on permissions can be found on our help site [here.](https://bitwarden.com/help/article/user-types-access-control/#access-control)
|
||||
More information on permissions can be found on our help site [here.]({{site.baseurl}}/article/user-types-access-control/#access-control)
|
||||
|
||||
## Migration support
|
||||
|
||||
@@ -175,7 +175,7 @@ The Bitwarden Customer Success team is available 24/7 with priority support for
|
||||
|
||||
### Organization
|
||||
|
||||
- A Bitwarden Organization is the encompassing “object” that relates all data for a given sharing entity. Click [here](https://bitwarden.com/help/article/about-organizations/) for more information on Organizations.
|
||||
- A Bitwarden Organization is the encompassing “object” that relates all data for a given sharing entity. Click [here]({{site.baseurl}}/article/about-organizations/) for more information on Organizations.
|
||||
|
||||
### Folders for Individual Vaults
|
||||
|
||||
@@ -193,7 +193,7 @@ The Bitwarden Customer Success team is available 24/7 with priority support for
|
||||
|
||||
### Group
|
||||
|
||||
- Bitwarden and LastPass support User Groups. When migrating to Bitwarden, you can leverage [BWDC](https://bitwarden.com/help/directory-connector/) to synchronize your LDAP groups into your Bitwarden Organization.
|
||||
- Bitwarden and LastPass support User Groups. When migrating to Bitwarden, you can leverage [BWDC]({{site.baseurl}}/article/directory-connector/) to synchronize your LDAP groups into your Bitwarden Organization.
|
||||
|
||||
### Read Only
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ featured: false
|
||||
popular: false
|
||||
hidden: false
|
||||
tags: [import, teams, enterprise, onboarding, security]
|
||||
order: 04
|
||||
order: "04"
|
||||
---
|
||||
|
||||
Secure migration of your Organization with Bitwarden is straightforward and secure. Simply follow the steps in this guide to migrate data and users from your existing password manager:
|
||||
@@ -33,7 +33,7 @@ Steps in this document **are listed in the recommended order** for ease of use a
|
||||
|
||||
Exporting data from another password manager will be different for each solution, and in some cases may be a bit tricky. Use one of our [Import & Export Guides]({{site.baseurl}}/import-export/) for help, for example with exporting from [Lastpass]({{site.baseurl}}/article/import-from-lastpass/#export-from-lastpass) or [1Password]({{site.baseurl}}/article/import-from-1password/#export-from-1password).
|
||||
|
||||
Gathering a full export of your data may require assigning shared folders or items to a single user for export, or performing multiple exports between users with appropriate permissions. Additionally, exported data may include personal data alongside shared/organizational data, so be sure to remove personal items from the export file before [importing to Bitwarden](#).
|
||||
Gathering a full export of your data may require assigning shared folders or items to a single user for export, or performing multiple exports between users with appropriate permissions. Additionally, exported data may include personal data alongside shared/organizational data, so be sure to remove personal items from the export file before [importing to Bitwarden](#step-3-import-data-to-your-organization).
|
||||
|
||||
{% callout info %}
|
||||
We recommend paying special attention to the location of the following types of data during export:
|
||||
@@ -57,12 +57,12 @@ It's important that you create your Organization first and [import data to it di
|
||||
|
||||
1. **Create your Organization**. Start by creating your Organization. To learn how, check out [this article]({{site.baseurl}}/article/about-organizations/#create-an-organization).
|
||||
|
||||
{% callout note %}To self-host Bitwarden, create an Organization on the Bitwarden cloud, generate a [license key](https://bitwarden.com/host/), and use the key to [unlock Organizations]({{site.baseurl}}/article/licensing-on-premise/#organization-license) on your server.{% endcallout %}
|
||||
{% callout info %}To self-host Bitwarden, create an Organization on the Bitwarden cloud, generate a [license key](https://bitwarden.com/host/), and use the key to [unlock Organizations]({{site.baseurl}}/article/licensing-on-premise/#organization-license) on your server.{% endcallout %}
|
||||
|
||||
2. **Onboard Administrative Users**. With your Organization created, further setup procedures can be made easier by onboarding some [administrative users]({{siter.baseurl}}/article/user-types-access-control). It's important that you **do not begin end-user onboarding** at this point, as there are a few steps left to prepare your Organization. Learn how to invite admins [here]({{site.baseurl}}/article/managing-users/#onboard-users).
|
||||
3. **Configure Identity Services**. Bitwarden Enterprise Organizations support [Login with Single-Sign-On]({{site.baseurl}}/article/about-sso/) using either SAML 2.0 or OpenID Connect (OIDC). To configure SSO, navigate to the [Business Portal](https://bitwarden.com/help/article/about-business-portal/), accessible from the Web Vault by [Organization Owners and Administrators]({{site.baseurl}}/article/user-types-access-control/).
|
||||
2. **Onboard Administrative Users**. With your Organization created, further setup procedures can be made easier by onboarding some [administrative users]({{siter.baseurl}}/article/user-types-access-control/). It's important that you **do not begin end-user onboarding** at this point, as there are a few steps left to prepare your Organization. Learn how to invite admins [here]({{site.baseurl}}/article/managing-users/#onboard-users).
|
||||
3. **Configure Identity Services**. Bitwarden Enterprise Organizations support [Login with Single-Sign-On]({{site.baseurl}}/article/about-sso/) using either SAML 2.0 or OpenID Connect (OIDC). To configure SSO, navigate to the [Business Portal]({{site.baseurl}}/article/about-business-portal/), accessible from the Web Vault by [Organization Owners and Administrators]({{site.baseurl}}/article/user-types-access-control/).
|
||||
|
||||
4. **Enable Enterprise Policies**. [Enterprise Policies]({{site.baseurl}}/article/) enable Enterprise Organizations to implement roles for users, for example requiring use of Two-step Login. It is highly recommended that you configure Policies before onboarding users.
|
||||
4. **Enable Enterprise Policies**. [Enterprise Policies]({{site.baseurl}}/article/policies/) enable Enterprise Organizations to implement roles for users, for example requiring use of Two-step Login. It is highly recommended that you configure Policies before onboarding users.
|
||||
|
||||
## Step 3: Import Data to your Organization
|
||||
|
||||
@@ -78,10 +78,10 @@ To import data to your Organization:
|
||||
{% callout warning %}Import to Bitwarden can't check whether items in the file to import are duplicative of items in your Vault. This means that **importing multiple files will create duplicative** Vault items if an item is already in the Vault and in the file to import.{% endcallout %}
|
||||
5. Select the **Import Data** button to complete your import.
|
||||
|
||||
Currently, file attachments are not included in Bitwarden import operations and will need to be uploaded to your Vault manually. For more information, see [File Attachments]({% link _articles/features/attachments.md %}).
|
||||
Currently, file attachments are not included in Bitwarden import operations and will need to be uploaded to your Vault manually. For more information, see [File Attachments]({{site.baseurl}}/article/attachments/).
|
||||
|
||||
{% callout success %}
|
||||
You should also recommend to employees that they export their personal data from your existing password manager and prepare it for import into Bitwarden. Learn more [here]({{site.baseurl}}/import-export/).
|
||||
You should also recommend to employees that they export their personal data from your existing password manager and prepare it for import into Bitwarden. Learn more [here]({{site.baseurl}}/article/import-data/).
|
||||
{% endcallout %}
|
||||
|
||||
### Import Recommendations
|
||||
@@ -103,9 +103,9 @@ To ensure the security of your Organization, Bitwarden applies a 3-step process
|
||||
|
||||
### Automated Onboarding
|
||||
|
||||
Automated user onboarding is available through [Bitwarden Directory Connector]({{site.baseurl}}/article/directory-sync), a standalone application available in a [Desktop app]({{site.baseurl}}/article/directory-sync-desktop/) and [CLI]({{site.baseurl}}/article/directory-sync-cli/) that will synchronize users and groups from your existing directory service.
|
||||
Automated user onboarding is available through [Bitwarden Directory Connector]({{site.baseurl}}/article/directory-sync/), a standalone application available in a [Desktop app]({{site.baseurl}}/article/directory-sync-desktop/) and [CLI]({{site.baseurl}}/article/directory-sync-cli/) that will synchronize users and groups from your existing directory service.
|
||||
|
||||
Users are automatically invited to join the Organization, and can be confirmed manually or automatically using the [Bitwarden CLI tool](https://bitwarden.com/help/article/cli/#confirm).
|
||||
Users are automatically invited to join the Organization, and can be confirmed manually or automatically using the [Bitwarden CLI tool]({{site.baseurl}}/article/cli/#confirm).
|
||||
|
||||
- Learn more about how syncing works [here]({{site.baseurl}}/article/directory-sync/).
|
||||
- Discover how to configure user and group filters for Directory Connector [here]({{site.baseurl}}/article/user-group-filters/).
|
||||
@@ -121,7 +121,7 @@ Bitwarden empowers Teams and Organizations to share sensitive data easily, secur
|
||||
|
||||
Collections can organize secure items in many ways, including but not limited to business function, group assignment, application access levels, or even security protocols. Collections function as shared folders, allowing for consistent access control and sharing amongst groups of users.
|
||||
|
||||
Shared folders from other password managers can be imported as Collections into Bitwarden by using the Organization Import template found [here](https://bitwarden.com/help/files/bitwarden_export_org.csv) and placing the name of the shared folder in the `Collection` column:
|
||||
Shared folders from other password managers can be imported as Collections into Bitwarden by using the Organization Import template found [here]({{site.baseurl}}/files/bitwarden_export_org.csv) and placing the name of the shared folder in the `Collection` column:
|
||||
|
||||
Example Export:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user