Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 2.46 KB

File metadata and controls

59 lines (42 loc) · 2.46 KB

stackit routing-table update

Updates a routing-table

Synopsis

Updates a routing-table.

stackit routing-table update ROUTING_TABLE_ID [flags]

Examples

  Updates the label(s) of a routing-table with ID "xxx" in organization with ID "yyy" and network-area with ID "zzz"
  $ stackit routing-table update xxx --labels key=value,foo=bar --organization-id yyy --network-area-id zzz

  Updates the name of a routing-table with ID "xxx" in organization with ID "yyy" and network-area with ID "zzz"
  $ stackit routing-table update xxx --name foo --organization-id yyy --network-area-id zzz

  Updates the description of a routing-table with ID "xxx" in organization with ID "yyy" and network-area with ID "zzz"
  $ stackit routing-table update xxx --description foo --organization-id yyy --network-area-id zzz

  Disables the dynamic routes of a routing-table with ID "xxx" in organization with ID "yyy" and network-area with ID "zzz"
  $ stackit routing-table update xxx --organization-id yyy --network-area-id zzz --dynamic-routes=false

  Disables the system routes of a routing-table with ID "xxx" in organization with ID "yyy" and network-area with ID "zzz"
  $ stackit routing-table update xxx --organization-id yyy --network-area-id zzz --system-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.
  -h, --help                     Help for "stackit routing-table update"
      --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.

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