Skip to main content

phylum group create

Create a new group

Usage: phylum group create [OPTIONS] <GROUP_NAME>

Argumentsโ€‹

<GROUP_NAME> โ€ƒ Name for the new group

Optionsโ€‹

-o, --org <ORG> โ€ƒ Phylum organization

-v, --verbose... โ€ƒ Increase the level of verbosity (the maximum is -vvv)

-q, --quiet... โ€ƒ Reduce the level of verbosity (the maximum is -qq)

-h, --help โ€ƒ Print help

Examplesโ€‹

# Create a new group named `sample`
$ phylum group create sample

# Create a group `sample` under the `test` organization
$ phylum group create --org test sample

# Make `test` the default organization for all operations,
# then create a new group `sample` under it.
$ phylum org link test
$ phylum group create sample