From 5089c7063c496908b4dc81915f0a76d70f97679b Mon Sep 17 00:00:00 2001 From: pierwill <19642016+pierwill@users.noreply.github.com> Date: Tue, 19 Nov 2019 11:07:26 -0800 Subject: [PATCH] Document adding members to orgs with the 'influx' CLI Closes #492 --- .../v2.0/organizations/members/add-member.md | 27 +++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/content/v2.0/organizations/members/add-member.md b/content/v2.0/organizations/members/add-member.md index 1ab088e5d..87d369ed7 100644 --- a/content/v2.0/organizations/members/add-member.md +++ b/content/v2.0/organizations/members/add-member.md @@ -7,13 +7,15 @@ menu: name: Add a member parent: Manage members weight: 201 -draft: true --- -Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI) -to add a member to an organization. +Use the `influx` command line interface (CLI) to add a member to an organization. -## Add a member to an organization in the InfluxDB UI +{{% cloud-msg %}} +Adding members is currently unavailable in {{< cloud-name >}}. +{{% /cloud-msg %}} + + ## Add a member to an organization using the influx CLI -Use the [`influx org members add` command](/v2.0/reference/cli/influx/org/members/add) -to add a user to an organization. Adding a user requires the following: +1. Get a list of users and their IDs by running the following: -_Complete content coming soon_ +```sh +influx user find +``` + +2. Add the desired user to an organization with this command: + +```sh +influx org members add -n -o +``` + +For more information, see the [`influx org members add` command](/v2.0/reference/cli/influx/org/members/add).