Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 2.05 KB

File metadata and controls

56 lines (40 loc) · 2.05 KB

stackit routing-table create

Creates a routing-table

Synopsis

Creates a routing-table.

stackit routing-table create [flags]

Examples

  Create a routing-table with name `rt`
  stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt"

  Create a routing-table with name `rt` and description `some description`
  stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --description "some description"

  Create a routing-table with name `rt` with system routes disabled
  stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --system-routes=false

  Create a routing-table with name `rt` with dynamic routes disabled
  stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --dynamic-routes=false

Options

      --description string       Description of the routing-table
      --dynamic-routes           If set to false, prevents dynamic routes from propagating to the routing table. (default true)
  -h, --help                     Help for "stackit routing-table create"
      --labels stringToString    Key=value labels (default [])
      --name string              Name of the routing-table
      --network-area-id string   Network-Area ID
      --organization-id string   Organization ID
      --system-routes            If set to false, disables routes for project-to-project communication. (default true)

Options inherited from parent commands

  -y, --assume-yes             If set, skips all confirmation prompts
      --async                  If set, runs the command asynchronously
  -o, --output-format string   Output format, one of ["json" "pretty" "none" "yaml"]
  -p, --project-id string      Project ID
      --region string          Target region for region-specific requests
      --verbosity string       Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")

SEE ALSO