1. Packages
  2. stackit
  3. API Docs
  4. EdgecloudInstance
Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud

    Edge Cloud is in private Beta and not generally available. You can contact support if you are interested in trying it out.

    This resource is in beta and may be subject to breaking changes in the future. Use with caution. See our guide for how to opt-in to use beta resources.

    Example Usage

    locals {
      project_id   = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      display_name = "edge"
      plan_id      = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      description  = "cats live on the edge"
      region       = "eu01"
    }
    
    resource "stackit_edgecloud_instance" "this" {
      project_id   = local.project_id
      display_name = local.display_name
      plan_id      = local.plan_id
      description  = local.description
    }
    
    # Only use the import statement, if you want to import an existing Edge Cloud instance resource
    import {
      to = stackit_edgecloud_instance.this
      id = "${local.project_id},${local.region},INSTANCE_ID"
    }
    

    Create EdgecloudInstance Resource

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

    Constructor syntax

    new EdgecloudInstance(name: string, args: EdgecloudInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def EdgecloudInstance(resource_name: str,
                          args: EdgecloudInstanceArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def EdgecloudInstance(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          display_name: Optional[str] = None,
                          plan_id: Optional[str] = None,
                          project_id: Optional[str] = None,
                          description: Optional[str] = None,
                          region: Optional[str] = None)
    func NewEdgecloudInstance(ctx *Context, name string, args EdgecloudInstanceArgs, opts ...ResourceOption) (*EdgecloudInstance, error)
    public EdgecloudInstance(string name, EdgecloudInstanceArgs args, CustomResourceOptions? opts = null)
    public EdgecloudInstance(String name, EdgecloudInstanceArgs args)
    public EdgecloudInstance(String name, EdgecloudInstanceArgs args, CustomResourceOptions options)
    
    type: stackit:EdgecloudInstance
    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 EdgecloudInstanceArgs
    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 EdgecloudInstanceArgs
    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 EdgecloudInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EdgecloudInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EdgecloudInstanceArgs
    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 edgecloudInstanceResource = new Stackit.EdgecloudInstance("edgecloudInstanceResource", new()
    {
        DisplayName = "string",
        PlanId = "string",
        ProjectId = "string",
        Description = "string",
        Region = "string",
    });
    
    example, err := stackit.NewEdgecloudInstance(ctx, "edgecloudInstanceResource", &stackit.EdgecloudInstanceArgs{
    	DisplayName: pulumi.String("string"),
    	PlanId:      pulumi.String("string"),
    	ProjectId:   pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Region:      pulumi.String("string"),
    })
    
    var edgecloudInstanceResource = new EdgecloudInstance("edgecloudInstanceResource", EdgecloudInstanceArgs.builder()
        .displayName("string")
        .planId("string")
        .projectId("string")
        .description("string")
        .region("string")
        .build());
    
    edgecloud_instance_resource = stackit.EdgecloudInstance("edgecloudInstanceResource",
        display_name="string",
        plan_id="string",
        project_id="string",
        description="string",
        region="string")
    
    const edgecloudInstanceResource = new stackit.EdgecloudInstance("edgecloudInstanceResource", {
        displayName: "string",
        planId: "string",
        projectId: "string",
        description: "string",
        region: "string",
    });
    
    type: stackit:EdgecloudInstance
    properties:
        description: string
        displayName: string
        planId: string
        projectId: string
        region: string
    

    EdgecloudInstance 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 EdgecloudInstance resource accepts the following input properties:

    DisplayName string
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    PlanId string
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    ProjectId string
    STACKIT project ID to which the Edge Cloud instance is associated.
    Description string
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    Region string
    STACKIT region to use for the instance, providers default_region will be used if unset.
    DisplayName string
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    PlanId string
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    ProjectId string
    STACKIT project ID to which the Edge Cloud instance is associated.
    Description string
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    Region string
    STACKIT region to use for the instance, providers default_region will be used if unset.
    displayName String
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    planId String
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    projectId String
    STACKIT project ID to which the Edge Cloud instance is associated.
    description String
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    region String
    STACKIT region to use for the instance, providers default_region will be used if unset.
    displayName string
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    planId string
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    projectId string
    STACKIT project ID to which the Edge Cloud instance is associated.
    description string
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    region string
    STACKIT region to use for the instance, providers default_region will be used if unset.
    display_name str
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    plan_id str
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    project_id str
    STACKIT project ID to which the Edge Cloud instance is associated.
    description str
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    region str
    STACKIT region to use for the instance, providers default_region will be used if unset.
    displayName String
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    planId String
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    projectId String
    STACKIT project ID to which the Edge Cloud instance is associated.
    description String
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    region String
    STACKIT region to use for the instance, providers default_region will be used if unset.

    Outputs

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

    Created string
    The date and time the creation of the instance was triggered.
    FrontendUrl string
    Frontend URL for the Edge Cloud instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    \n\n-\n\n
    Status string
    instance status
    Created string
    The date and time the creation of the instance was triggered.
    FrontendUrl string
    Frontend URL for the Edge Cloud instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    \n\n-\n\n
    Status string
    instance status
    created String
    The date and time the creation of the instance was triggered.
    frontendUrl String
    Frontend URL for the Edge Cloud instance.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    \n\n-\n\n
    status String
    instance status
    created string
    The date and time the creation of the instance was triggered.
    frontendUrl string
    Frontend URL for the Edge Cloud instance.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    \n\n-\n\n
    status string
    instance status
    created str
    The date and time the creation of the instance was triggered.
    frontend_url str
    Frontend URL for the Edge Cloud instance.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    \n\n-\n\n
    status str
    instance status
    created String
    The date and time the creation of the instance was triggered.
    frontendUrl String
    Frontend URL for the Edge Cloud instance.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    \n\n-\n\n
    status String
    instance status

    Look up Existing EdgecloudInstance Resource

    Get an existing EdgecloudInstance 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?: EdgecloudInstanceState, opts?: CustomResourceOptions): EdgecloudInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            frontend_url: Optional[str] = None,
            instance_id: Optional[str] = None,
            plan_id: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            status: Optional[str] = None) -> EdgecloudInstance
    func GetEdgecloudInstance(ctx *Context, name string, id IDInput, state *EdgecloudInstanceState, opts ...ResourceOption) (*EdgecloudInstance, error)
    public static EdgecloudInstance Get(string name, Input<string> id, EdgecloudInstanceState? state, CustomResourceOptions? opts = null)
    public static EdgecloudInstance get(String name, Output<String> id, EdgecloudInstanceState state, CustomResourceOptions options)
    resources:  _:    type: stackit:EdgecloudInstance    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:
    Created string
    The date and time the creation of the instance was triggered.
    Description string
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    DisplayName string
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    FrontendUrl string
    Frontend URL for the Edge Cloud instance.
    InstanceId string
    \n\n-\n\n
    PlanId string
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    ProjectId string
    STACKIT project ID to which the Edge Cloud instance is associated.
    Region string
    STACKIT region to use for the instance, providers default_region will be used if unset.
    Status string
    instance status
    Created string
    The date and time the creation of the instance was triggered.
    Description string
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    DisplayName string
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    FrontendUrl string
    Frontend URL for the Edge Cloud instance.
    InstanceId string
    \n\n-\n\n
    PlanId string
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    ProjectId string
    STACKIT project ID to which the Edge Cloud instance is associated.
    Region string
    STACKIT region to use for the instance, providers default_region will be used if unset.
    Status string
    instance status
    created String
    The date and time the creation of the instance was triggered.
    description String
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    displayName String
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    frontendUrl String
    Frontend URL for the Edge Cloud instance.
    instanceId String
    \n\n-\n\n
    planId String
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    projectId String
    STACKIT project ID to which the Edge Cloud instance is associated.
    region String
    STACKIT region to use for the instance, providers default_region will be used if unset.
    status String
    instance status
    created string
    The date and time the creation of the instance was triggered.
    description string
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    displayName string
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    frontendUrl string
    Frontend URL for the Edge Cloud instance.
    instanceId string
    \n\n-\n\n
    planId string
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    projectId string
    STACKIT project ID to which the Edge Cloud instance is associated.
    region string
    STACKIT region to use for the instance, providers default_region will be used if unset.
    status string
    instance status
    created str
    The date and time the creation of the instance was triggered.
    description str
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    display_name str
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    frontend_url str
    Frontend URL for the Edge Cloud instance.
    instance_id str
    \n\n-\n\n
    plan_id str
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    project_id str
    STACKIT project ID to which the Edge Cloud instance is associated.
    region str
    STACKIT region to use for the instance, providers default_region will be used if unset.
    status str
    instance status
    created String
    The date and time the creation of the instance was triggered.
    description String
    Description for your STACKIT Edge Cloud instance. Max length is 256 characters
    displayName String
    Display name shown for the Edge Cloud instance. Has to be a valid hostname, with a length between 4 and 8 characters.
    frontendUrl String
    Frontend URL for the Edge Cloud instance.
    instanceId String
    \n\n-\n\n
    planId String
    STACKIT Edge Plan ID for the Edge Cloud instance, has to be the UUID of an existing plan.
    projectId String
    STACKIT project ID to which the Edge Cloud instance is associated.
    region String
    STACKIT region to use for the instance, providers default_region will be used if unset.
    status String
    instance status

    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.4
    published on Friday, Feb 20, 2026 by stackitcloud
      Try Pulumi Cloud free. Your team will thank you.