route_tablesΒΆ

Define route_tables using the following schema:

route_tables:
  human-readable-custom-name:
      routes:
          - ['cidr', 'destination']

Example code snippet from route_tables.yaml:

# This is an example route_tables schema.
route_tables:

  private-1:
    routes:
      - ['0.0.0.0/0', 'nat']

  private-2:
    routes:
      - ['0.0.0.0/0', 'nat']

  private-3:
    routes:
      - ['0.0.0.0/0', 'nat']

  public:
    routes:
      - ['0.0.0.0/0', 'internet_gateway']