|
| 1 | +## stackit routing-table create |
| 2 | + |
| 3 | +Creates a routing-table |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a routing-table. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit routing-table create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a routing table with name `rt` |
| 17 | + stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" |
| 18 | +
|
| 19 | + Create a routing table with name `rt` and description `some description` |
| 20 | + stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --description "some description" |
| 21 | +
|
| 22 | + Create a routing table with name rt with system_routes disabled |
| 23 | + stackit routing-table create --organization-id xxx --network-area-id yyy --name "rt" --system-routes false |
| 24 | +``` |
| 25 | + |
| 26 | +### Options |
| 27 | + |
| 28 | +``` |
| 29 | + --description string Description of the routing-table |
| 30 | + --dynamic-routes A config setting for a routing-table which allows propagation of dynamic routes to this routing-table. (default true) |
| 31 | + -h, --help Help for "stackit routing-table create" |
| 32 | + --labels stringToString Key=value labels (default []) |
| 33 | + --name string Name of the routing-table |
| 34 | + --network-area-id string Network-Area ID |
| 35 | + --organization-id string Organization ID |
| 36 | + --system-routes This controls whether the routes for project-to-project communication are created automatically or not. (default true) |
| 37 | +``` |
| 38 | + |
| 39 | +### Options inherited from parent commands |
| 40 | + |
| 41 | +``` |
| 42 | + -y, --assume-yes If set, skips all confirmation prompts |
| 43 | + --async If set, runs the command asynchronously |
| 44 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 45 | + -p, --project-id string Project ID |
| 46 | + --region string Target region for region-specific requests |
| 47 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 48 | +``` |
| 49 | + |
| 50 | +### SEE ALSO |
| 51 | + |
| 52 | +* [stackit routing-table](./stackit_routing-table.md) - Manage routing-tables and its according routes |
| 53 | + |
0 commit comments