1. Packages
  2. Packages
  3. stackit
  4. API Docs
  5. NetworkArea
Viewing docs for stackit v0.0.5
published on Tuesday, Mar 31, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.5
published on Tuesday, Mar 31, 2026 by stackitcloud

    Network area resource schema.

    Example Usage

    resource "stackit_network_area" "example" {
      organization_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      name            = "example-network-area"
      labels = {
        "key" = "value"
      }
    }
    
    # Only use the import statement, if you want to import an existing network area
    import {
      to = stackit_network_area.import-example
      id = "${var.organization_id},${var.network_area_id}"
    }
    

    Migration of IaaS resources from versions <= v0.78.1

    The release of the STACKIT IaaS API v2 provides a lot of new features, but also includes some breaking changes (when coming from v1 of the STACKIT IaaS API) which must be somehow represented on Terraform side. The stackit.NetworkArea resource deprecated some fields. See the example below how to migrate your resources.

    Migration: Network area resource (stackit_network_area)

    Configuration for <= v0.78.1

    resource "stackit_network_area" "example" {
      organization_id  = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      name             = "my-network-area"
      transfer_network = "192.168.1.0/24" # transfer_network field got deprecated for provider versions > v0.74.0, use the new "stackit_network_area_region" resource instead
      network_ranges = [
        {
          prefix = "192.168.0.0/25" # network_ranges field got deprecated for provider versions > v0.74.0, use the new "stackit_network_area_region" resource instead
        }
      ]
      default_nameservers   = ["8.8.8.8"] # default_nameservers field got deprecated for provider versions > v0.74.0, use the new "stackit_network_area_region" resource instead
      default_prefix_length = 25 # default_prefix_length field got deprecated for provider versions > v0.74.0, use the new "stackit_network_area_region" resource instead
      max_prefix_length     = 29 # max_prefix_length field got deprecated for provider versions > v0.74.0, use the new "stackit_network_area_region" resource instead
      min_prefix_length     = 24 # min_prefix_length field got deprecated for provider versions > v0.74.0, use the new "stackit_network_area_region" resource instead
    }
    

    The previous configuration has some deprecated fields.

    Configuration for > v0.78.1

    To migrate from a previous state, you need to modify your configuration like this:

    resource "stackit_network_area" "example" {
      organization_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      name            = "my-network-area"
      # remove all the deprecated fields
    }
    
    # Add the new resource "stackit_network_area_region" and configure it with all the deprecated values from the "stackit_network_area" resource
    resource "stackit_network_area_region" "example" {
      organization_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      network_area_id = stackit_network_area.example.network_area_id
      region = "eu01"
      ipv4 = {
        transfer_network = "192.168.1.0/24"
        network_ranges = [
          {
            prefix = "192.168.0.0/25"
          }
        ]
        default_nameservers   = ["8.8.8.8"]
        default_prefix_length = 25
        max_prefix_length     = 29
        min_prefix_length     = 24
      }
    }
    
    # Add this import for "stackit_network_area_region" to migrate from the previous configuration
    import {
      to = stackit_network_area_region.example
      id = "${stackit_network_area.example.id},eu01"
    }
    

    After modifying the configuration, run $ pulumi preview to check what terraform will do. The changes should trigger an update in-place for the existing “stackit.NetworkArea” where the deprecated fields will be removed and the resource “stackit.NetworkAreaRegion” should be imported. It shouldn’t trigger any recreation. If terraform wants to recreate any of the resources, verify that you are using the provider version > v0.78.1 and have everything defined correctly.

    When everything looks good, run $ pulumi up to apply these changes. When the run is completed, you can remove the import-block. Run $ pulumi preview to verify that the infrastructure matches the configuration.

    Create NetworkArea Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NetworkArea(name: string, args: NetworkAreaArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkArea(resource_name: str,
                    args: NetworkAreaArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkArea(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    organization_id: Optional[str] = None,
                    default_nameservers: Optional[Sequence[str]] = None,
                    default_prefix_length: Optional[int] = None,
                    labels: Optional[Mapping[str, str]] = None,
                    max_prefix_length: Optional[int] = None,
                    min_prefix_length: Optional[int] = None,
                    name: Optional[str] = None,
                    network_ranges: Optional[Sequence[NetworkAreaNetworkRangeArgs]] = None,
                    transfer_network: Optional[str] = None)
    func NewNetworkArea(ctx *Context, name string, args NetworkAreaArgs, opts ...ResourceOption) (*NetworkArea, error)
    public NetworkArea(string name, NetworkAreaArgs args, CustomResourceOptions? opts = null)
    public NetworkArea(String name, NetworkAreaArgs args)
    public NetworkArea(String name, NetworkAreaArgs args, CustomResourceOptions options)
    
    type: stackit:NetworkArea
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NetworkAreaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NetworkAreaArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NetworkAreaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkAreaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkAreaArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var networkAreaResource = new Stackit.NetworkArea("networkAreaResource", new()
    {
        OrganizationId = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Name = "string",
    });
    
    example, err := stackit.NewNetworkArea(ctx, "networkAreaResource", &stackit.NetworkAreaArgs{
    	OrganizationId: pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var networkAreaResource = new NetworkArea("networkAreaResource", NetworkAreaArgs.builder()
        .organizationId("string")
        .labels(Map.of("string", "string"))
        .name("string")
        .build());
    
    network_area_resource = stackit.NetworkArea("networkAreaResource",
        organization_id="string",
        labels={
            "string": "string",
        },
        name="string")
    
    const networkAreaResource = new stackit.NetworkArea("networkAreaResource", {
        organizationId: "string",
        labels: {
            string: "string",
        },
        name: "string",
    });
    
    type: stackit:NetworkArea
    properties:
        labels:
            string: string
        name: string
        organizationId: string
    

    NetworkArea Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NetworkArea resource accepts the following input properties:

    OrganizationId string
    STACKIT organization ID to which the network area is associated.
    DefaultNameservers List<string>
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    DefaultPrefixLength int
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Labels Dictionary<string, string>
    Labels are key-value string pairs which can be attached to a resource container
    MaxPrefixLength int
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    MinPrefixLength int
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Name string
    The name of the network area.
    NetworkRanges List<NetworkAreaNetworkRange>
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    TransferNetwork string
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    OrganizationId string
    STACKIT organization ID to which the network area is associated.
    DefaultNameservers []string
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    DefaultPrefixLength int
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Labels map[string]string
    Labels are key-value string pairs which can be attached to a resource container
    MaxPrefixLength int
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    MinPrefixLength int
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Name string
    The name of the network area.
    NetworkRanges []NetworkAreaNetworkRangeArgs
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    TransferNetwork string
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organizationId String
    STACKIT organization ID to which the network area is associated.
    defaultNameservers List<String>
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultPrefixLength Integer
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels Map<String,String>
    Labels are key-value string pairs which can be attached to a resource container
    maxPrefixLength Integer
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    minPrefixLength Integer
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name String
    The name of the network area.
    networkRanges List<NetworkAreaNetworkRange>
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    transferNetwork String
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organizationId string
    STACKIT organization ID to which the network area is associated.
    defaultNameservers string[]
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultPrefixLength number
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels {[key: string]: string}
    Labels are key-value string pairs which can be attached to a resource container
    maxPrefixLength number
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    minPrefixLength number
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name string
    The name of the network area.
    networkRanges NetworkAreaNetworkRange[]
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    transferNetwork string
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organization_id str
    STACKIT organization ID to which the network area is associated.
    default_nameservers Sequence[str]
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    default_prefix_length int
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels Mapping[str, str]
    Labels are key-value string pairs which can be attached to a resource container
    max_prefix_length int
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    min_prefix_length int
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name str
    The name of the network area.
    network_ranges Sequence[NetworkAreaNetworkRangeArgs]
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    transfer_network str
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organizationId String
    STACKIT organization ID to which the network area is associated.
    defaultNameservers List<String>
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultPrefixLength Number
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels Map<String>
    Labels are key-value string pairs which can be attached to a resource container
    maxPrefixLength Number
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    minPrefixLength Number
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name String
    The name of the network area.
    networkRanges List<Property Map>
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    transferNetwork String
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NetworkArea resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkAreaId string
    The network area ID.
    ProjectCount int
    The amount of projects currently referencing this area.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkAreaId string
    The network area ID.
    ProjectCount int
    The amount of projects currently referencing this area.
    id String
    The provider-assigned unique ID for this managed resource.
    networkAreaId String
    The network area ID.
    projectCount Integer
    The amount of projects currently referencing this area.
    id string
    The provider-assigned unique ID for this managed resource.
    networkAreaId string
    The network area ID.
    projectCount number
    The amount of projects currently referencing this area.
    id str
    The provider-assigned unique ID for this managed resource.
    network_area_id str
    The network area ID.
    project_count int
    The amount of projects currently referencing this area.
    id String
    The provider-assigned unique ID for this managed resource.
    networkAreaId String
    The network area ID.
    projectCount Number
    The amount of projects currently referencing this area.

    Look up Existing NetworkArea Resource

    Get an existing NetworkArea resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NetworkAreaState, opts?: CustomResourceOptions): NetworkArea
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            default_nameservers: Optional[Sequence[str]] = None,
            default_prefix_length: Optional[int] = None,
            labels: Optional[Mapping[str, str]] = None,
            max_prefix_length: Optional[int] = None,
            min_prefix_length: Optional[int] = None,
            name: Optional[str] = None,
            network_area_id: Optional[str] = None,
            network_ranges: Optional[Sequence[NetworkAreaNetworkRangeArgs]] = None,
            organization_id: Optional[str] = None,
            project_count: Optional[int] = None,
            transfer_network: Optional[str] = None) -> NetworkArea
    func GetNetworkArea(ctx *Context, name string, id IDInput, state *NetworkAreaState, opts ...ResourceOption) (*NetworkArea, error)
    public static NetworkArea Get(string name, Input<string> id, NetworkAreaState? state, CustomResourceOptions? opts = null)
    public static NetworkArea get(String name, Output<String> id, NetworkAreaState state, CustomResourceOptions options)
    resources:  _:    type: stackit:NetworkArea    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DefaultNameservers List<string>
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    DefaultPrefixLength int
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Labels Dictionary<string, string>
    Labels are key-value string pairs which can be attached to a resource container
    MaxPrefixLength int
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    MinPrefixLength int
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Name string
    The name of the network area.
    NetworkAreaId string
    The network area ID.
    NetworkRanges List<NetworkAreaNetworkRange>
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    OrganizationId string
    STACKIT organization ID to which the network area is associated.
    ProjectCount int
    The amount of projects currently referencing this area.
    TransferNetwork string
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    DefaultNameservers []string
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    DefaultPrefixLength int
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Labels map[string]string
    Labels are key-value string pairs which can be attached to a resource container
    MaxPrefixLength int
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    MinPrefixLength int
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Name string
    The name of the network area.
    NetworkAreaId string
    The network area ID.
    NetworkRanges []NetworkAreaNetworkRangeArgs
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    OrganizationId string
    STACKIT organization ID to which the network area is associated.
    ProjectCount int
    The amount of projects currently referencing this area.
    TransferNetwork string
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultNameservers List<String>
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultPrefixLength Integer
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels Map<String,String>
    Labels are key-value string pairs which can be attached to a resource container
    maxPrefixLength Integer
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    minPrefixLength Integer
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name String
    The name of the network area.
    networkAreaId String
    The network area ID.
    networkRanges List<NetworkAreaNetworkRange>
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organizationId String
    STACKIT organization ID to which the network area is associated.
    projectCount Integer
    The amount of projects currently referencing this area.
    transferNetwork String
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultNameservers string[]
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultPrefixLength number
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels {[key: string]: string}
    Labels are key-value string pairs which can be attached to a resource container
    maxPrefixLength number
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    minPrefixLength number
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name string
    The name of the network area.
    networkAreaId string
    The network area ID.
    networkRanges NetworkAreaNetworkRange[]
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organizationId string
    STACKIT organization ID to which the network area is associated.
    projectCount number
    The amount of projects currently referencing this area.
    transferNetwork string
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    default_nameservers Sequence[str]
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    default_prefix_length int
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels Mapping[str, str]
    Labels are key-value string pairs which can be attached to a resource container
    max_prefix_length int
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    min_prefix_length int
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name str
    The name of the network area.
    network_area_id str
    The network area ID.
    network_ranges Sequence[NetworkAreaNetworkRangeArgs]
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organization_id str
    STACKIT organization ID to which the network area is associated.
    project_count int
    The amount of projects currently referencing this area.
    transfer_network str
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultNameservers List<String>
    List of DNS Servers/Nameservers for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    defaultPrefixLength Number
    The default prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    labels Map<String>
    Labels are key-value string pairs which can be attached to a resource container
    maxPrefixLength Number
    The maximal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    minPrefixLength Number
    The minimal prefix length for networks in the network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    name String
    The name of the network area.
    networkAreaId String
    The network area ID.
    networkRanges List<Property Map>
    List of Network ranges for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    organizationId String
    STACKIT organization ID to which the network area is associated.
    projectCount Number
    The amount of projects currently referencing this area.
    transferNetwork String
    Classless Inter-Domain Routing (CIDR) for configuration of network area for region eu01.

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Supporting Types

    NetworkAreaNetworkRange, NetworkAreaNetworkRangeArgs

    Prefix string
    Classless Inter-Domain Routing (CIDR).

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    NetworkRangeId string

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Prefix string
    Classless Inter-Domain Routing (CIDR).

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    NetworkRangeId string

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    prefix String
    Classless Inter-Domain Routing (CIDR).

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    networkRangeId String

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    prefix string
    Classless Inter-Domain Routing (CIDR).

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    networkRangeId string

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    prefix str
    Classless Inter-Domain Routing (CIDR).

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    network_range_id str

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    prefix String
    Classless Inter-Domain Routing (CIDR).

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    networkRangeId String

    Deprecated: Deprecated because of the IaaS API v1 -> v2 migration. Will be removed in May 2026. Use the new stackit.NetworkAreaRegion resource instead.

    Package Details

    Repository
    stackit stackitcloud/pulumi-stackit
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the stackit Terraform Provider.
    stackit logo
    Viewing docs for stackit v0.0.5
    published on Tuesday, Mar 31, 2026 by stackitcloud
      Try Pulumi Cloud free. Your team will thank you.