--- # generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "stackit_network_area_route Resource - stackit" subcategory: "" description: |- Network area route resource schema. Must have a region specified in the provider configuration. --- # stackit_network_area_route (Resource) Network area route resource schema. Must have a `region` specified in the provider configuration. ## Example Usage ```terraform resource "stackit_network_area" "example" { organization_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" network_area_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" prefix = "1.2.3.4/5" next_hop = "6.7.8.9" } ``` ## Schema ### Required - `network_area_id` (String) The network area ID to which the network area route is associated. - `next_hop` (String) The IP address of the routing system, that will route the prefix configured. Should be a valid IPv4 address. - `organization_id` (String) STACKIT organization ID to which the network area is associated. - `prefix` (String) The network, that is reachable though the Next Hop. Should use CIDR notation. ### Read-Only - `id` (String) Network area route resource schema. Must have a `region` specified in the provider configuration. ~> This resource is in beta and may be subject to breaking changes in the future. Use with caution. See our [guide](https://registry.terraform.io/providers/stackitcloud/stackit/latest/docs/guides/opting_into_beta_resources) for how to opt-in to use beta resources. - `network_area_route_id` (String) The network area route ID.