Organizations
  • What is Takomo Organizations?
  • Organization configuration
    • Introduction
    • Directory structure
    • Master account
    • Organizational units
    • Accounts
    • Policies
    • Deploying organization
  • Accounts
    • Creating accounts
    • Account aliases
    • Listing accounts
  • Account stacks
    • Config sets
    • Bootstrap config sets
    • Variables
    • Deploying config sets
    • Removing config sets
  • Command-line usage
    • Organization
      • Create organization
      • Describe organization
      • Deploy organization
    • Account
      • Create account
      • Create account alias
      • Delete account alias
      • List accounts
    • Account stacks
      • List accounts stacks
      • Deploy accounts
      • Undeploy accounts
      • Bootstrap accounts
      • Tear down accounts
Powered by GitBook
On this page
  • Usage
  • Positional arguments
  • Options
  • IAM permissions
  • Examples

Was this helpful?

  1. Command-line usage
  2. Organization

Create organization

PreviousOrganizationNextDescribe organization

Last updated 3 years ago

Was this helpful?

Create a new AWS organization and initialize a minimum organization configuration file in organization/organization.yml.

Usage

tkm org create [--feature-set <FEATURE_SET>]

Positional arguments

This command has no positional arguments.

Options

In addition to the , this command has the following options.

  • --feature-set <feature set>

    • Optional.

    • Specifies the feature set supported by the new organization.

    • Allowed values are:

      • ALL = Enable all features (default).

      • CONSOLIDATED_BILLING = All member accounts have their bills consolidated to and paid by the master account.

IAM permissions

These are the minimum IAM permissions required to run this command.

Statement:
  - Effect: Allow
    Action:
      - iam:CreateServiceLinkedRole
      - organizations:CreateOrganization
    Resource: "*"

Examples

Create a new organization with default feature set, which is ALL.

tkm org create

Create a new organization with ALL feature set.

tkm org create --feature-set ALL

Create a new organization with CONSOLIDATED_BILLING feature set.

tkm org create --feature-set CONSOLIDATED_BILLING

common options