1. Packages
  2. Scaleway
  3. API Docs
  4. AppleSiliconServer
Scaleway v1.33.0 published on Tuesday, Aug 12, 2025 by pulumiverse

scaleway.AppleSiliconServer

Explore with Pulumi AI

scaleway logo
Scaleway v1.33.0 published on Tuesday, Aug 12, 2025 by pulumiverse
    Deprecated: scaleway.index/applesiliconserver.AppleSiliconServer has been deprecated in favor of scaleway.applesilicon/server.Server

    Creates and manages Scaleway Apple silicon. For more information, see the API documentation.

    Example Usage

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const server = new scaleway.applesilicon.Server("server", {
        name: "test-m1",
        type: "M1-M",
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    server = scaleway.applesilicon.Server("server",
        name="test-m1",
        type="M1-M")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/applesilicon"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := applesilicon.NewServer(ctx, "server", &applesilicon.ServerArgs{
    			Name: pulumi.String("test-m1"),
    			Type: pulumi.String("M1-M"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var server = new Scaleway.Applesilicon.Server("server", new()
        {
            Name = "test-m1",
            Type = "M1-M",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.applesilicon.Server;
    import com.pulumi.scaleway.applesilicon.ServerArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var server = new Server("server", ServerArgs.builder()
                .name("test-m1")
                .type("M1-M")
                .build());
    
        }
    }
    
    resources:
      server:
        type: scaleway:applesilicon:Server
        properties:
          name: test-m1
          type: M1-M
    

    Enable VPC and attach private network

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const vpc_apple_silicon = new scaleway.network.Vpc("vpc-apple-silicon", {name: "vpc-apple-silicon"});
    const pn_apple_silicon = new scaleway.network.PrivateNetwork("pn-apple-silicon", {
        name: "pn-apple-silicon",
        vpcId: vpc_apple_silicon.id,
    });
    const my_server = new scaleway.applesilicon.Server("my-server", {
        name: "TestAccServerEnableVPC",
        type: "M2-M",
        enableVpc: true,
        privateNetworks: [{
            id: pn_apple_silicon.id,
        }],
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    vpc_apple_silicon = scaleway.network.Vpc("vpc-apple-silicon", name="vpc-apple-silicon")
    pn_apple_silicon = scaleway.network.PrivateNetwork("pn-apple-silicon",
        name="pn-apple-silicon",
        vpc_id=vpc_apple_silicon.id)
    my_server = scaleway.applesilicon.Server("my-server",
        name="TestAccServerEnableVPC",
        type="M2-M",
        enable_vpc=True,
        private_networks=[{
            "id": pn_apple_silicon.id,
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/applesilicon"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/network"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		vpc_apple_silicon, err := network.NewVpc(ctx, "vpc-apple-silicon", &network.VpcArgs{
    			Name: pulumi.String("vpc-apple-silicon"),
    		})
    		if err != nil {
    			return err
    		}
    		pn_apple_silicon, err := network.NewPrivateNetwork(ctx, "pn-apple-silicon", &network.PrivateNetworkArgs{
    			Name:  pulumi.String("pn-apple-silicon"),
    			VpcId: vpc_apple_silicon.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = applesilicon.NewServer(ctx, "my-server", &applesilicon.ServerArgs{
    			Name:      pulumi.String("TestAccServerEnableVPC"),
    			Type:      pulumi.String("M2-M"),
    			EnableVpc: pulumi.Bool(true),
    			PrivateNetworks: applesilicon.ServerPrivateNetworkArray{
    				&applesilicon.ServerPrivateNetworkArgs{
    					Id: pn_apple_silicon.ID(),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var vpc_apple_silicon = new Scaleway.Network.Vpc("vpc-apple-silicon", new()
        {
            Name = "vpc-apple-silicon",
        });
    
        var pn_apple_silicon = new Scaleway.Network.PrivateNetwork("pn-apple-silicon", new()
        {
            Name = "pn-apple-silicon",
            VpcId = vpc_apple_silicon.Id,
        });
    
        var my_server = new Scaleway.Applesilicon.Server("my-server", new()
        {
            Name = "TestAccServerEnableVPC",
            Type = "M2-M",
            EnableVpc = true,
            PrivateNetworks = new[]
            {
                new Scaleway.Applesilicon.Inputs.ServerPrivateNetworkArgs
                {
                    Id = pn_apple_silicon.Id,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.network.Vpc;
    import com.pulumi.scaleway.network.VpcArgs;
    import com.pulumi.scaleway.network.PrivateNetwork;
    import com.pulumi.scaleway.network.PrivateNetworkArgs;
    import com.pulumi.scaleway.applesilicon.Server;
    import com.pulumi.scaleway.applesilicon.ServerArgs;
    import com.pulumi.scaleway.applesilicon.inputs.ServerPrivateNetworkArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var vpc_apple_silicon = new Vpc("vpc-apple-silicon", VpcArgs.builder()
                .name("vpc-apple-silicon")
                .build());
    
            var pn_apple_silicon = new PrivateNetwork("pn-apple-silicon", PrivateNetworkArgs.builder()
                .name("pn-apple-silicon")
                .vpcId(vpc_apple_silicon.id())
                .build());
    
            var my_server = new Server("my-server", ServerArgs.builder()
                .name("TestAccServerEnableVPC")
                .type("M2-M")
                .enableVpc(true)
                .privateNetworks(ServerPrivateNetworkArgs.builder()
                    .id(pn_apple_silicon.id())
                    .build())
                .build());
    
        }
    }
    
    resources:
      vpc-apple-silicon:
        type: scaleway:network:Vpc
        properties:
          name: vpc-apple-silicon
      pn-apple-silicon:
        type: scaleway:network:PrivateNetwork
        properties:
          name: pn-apple-silicon
          vpcId: ${["vpc-apple-silicon"].id}
      my-server:
        type: scaleway:applesilicon:Server
        properties:
          name: TestAccServerEnableVPC
          type: M2-M
          enableVpc: true
          privateNetworks:
            - id: ${["pn-apple-silicon"].id}
    

    Create AppleSiliconServer Resource

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

    Constructor syntax

    new AppleSiliconServer(name: string, args: AppleSiliconServerArgs, opts?: CustomResourceOptions);
    @overload
    def AppleSiliconServer(resource_name: str,
                           args: AppleSiliconServerArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppleSiliconServer(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           commitment: Optional[str] = None,
                           enable_vpc: Optional[bool] = None,
                           name: Optional[str] = None,
                           private_ips: Optional[Sequence[AppleSiliconServerPrivateIpArgs]] = None,
                           private_networks: Optional[Sequence[AppleSiliconServerPrivateNetworkArgs]] = None,
                           project_id: Optional[str] = None,
                           public_bandwidth: Optional[int] = None,
                           type: Optional[str] = None,
                           zone: Optional[str] = None)
    func NewAppleSiliconServer(ctx *Context, name string, args AppleSiliconServerArgs, opts ...ResourceOption) (*AppleSiliconServer, error)
    public AppleSiliconServer(string name, AppleSiliconServerArgs args, CustomResourceOptions? opts = null)
    public AppleSiliconServer(String name, AppleSiliconServerArgs args)
    public AppleSiliconServer(String name, AppleSiliconServerArgs args, CustomResourceOptions options)
    
    type: scaleway:AppleSiliconServer
    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 AppleSiliconServerArgs
    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 AppleSiliconServerArgs
    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 AppleSiliconServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppleSiliconServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppleSiliconServerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Type string
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    Commitment string
    The commitment period of the server
    EnableVpc bool
    : Enables the VPC option when set to true.
    Name string
    The name of the server.
    PrivateIps List<Pulumiverse.Scaleway.Inputs.AppleSiliconServerPrivateIp>
    The list of private IPv4 and IPv6 addresses associated with the server.
    PrivateNetworks List<Pulumiverse.Scaleway.Inputs.AppleSiliconServerPrivateNetwork>
    The private networks to attach to the server
    ProjectId string
    project_id) The ID of the project the server is associated with.
    PublicBandwidth int
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    Zone string
    zone) The zone in which the server should be created.
    Type string
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    Commitment string
    The commitment period of the server
    EnableVpc bool
    : Enables the VPC option when set to true.
    Name string
    The name of the server.
    PrivateIps []AppleSiliconServerPrivateIpArgs
    The list of private IPv4 and IPv6 addresses associated with the server.
    PrivateNetworks []AppleSiliconServerPrivateNetworkArgs
    The private networks to attach to the server
    ProjectId string
    project_id) The ID of the project the server is associated with.
    PublicBandwidth int
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    Zone string
    zone) The zone in which the server should be created.
    type String
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    commitment String
    The commitment period of the server
    enableVpc Boolean
    : Enables the VPC option when set to true.
    name String
    The name of the server.
    privateIps List<AppleSiliconServerPrivateIp>
    The list of private IPv4 and IPv6 addresses associated with the server.
    privateNetworks List<AppleSiliconServerPrivateNetwork>
    The private networks to attach to the server
    projectId String
    project_id) The ID of the project the server is associated with.
    publicBandwidth Integer
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    zone String
    zone) The zone in which the server should be created.
    type string
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    commitment string
    The commitment period of the server
    enableVpc boolean
    : Enables the VPC option when set to true.
    name string
    The name of the server.
    privateIps AppleSiliconServerPrivateIp[]
    The list of private IPv4 and IPv6 addresses associated with the server.
    privateNetworks AppleSiliconServerPrivateNetwork[]
    The private networks to attach to the server
    projectId string
    project_id) The ID of the project the server is associated with.
    publicBandwidth number
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    zone string
    zone) The zone in which the server should be created.
    type str
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    commitment str
    The commitment period of the server
    enable_vpc bool
    : Enables the VPC option when set to true.
    name str
    The name of the server.
    private_ips Sequence[AppleSiliconServerPrivateIpArgs]
    The list of private IPv4 and IPv6 addresses associated with the server.
    private_networks Sequence[AppleSiliconServerPrivateNetworkArgs]
    The private networks to attach to the server
    project_id str
    project_id) The ID of the project the server is associated with.
    public_bandwidth int
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    zone str
    zone) The zone in which the server should be created.
    type String
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    commitment String
    The commitment period of the server
    enableVpc Boolean
    : Enables the VPC option when set to true.
    name String
    The name of the server.
    privateIps List<Property Map>
    The list of private IPv4 and IPv6 addresses associated with the server.
    privateNetworks List<Property Map>
    The private networks to attach to the server
    projectId String
    project_id) The ID of the project the server is associated with.
    publicBandwidth Number
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    zone String
    zone) The zone in which the server should be created.

    Outputs

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

    CreatedAt string
    The date and time the private network was created.
    DeletableAt string
    The minimal date and time on which you can delete this server due to Apple licence
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    IPv4 address of the server (IPv4 address).
    OrganizationId string
    The organization ID the server is associated with.
    Password string
    The password of the server
    State string
    The state of the server.
    UpdatedAt string
    The date and time the private network was last updated.
    Username string
    The username of the server
    VncUrl string
    URL of the VNC.
    VpcStatus string
    The current status of the VPC option.
    CreatedAt string
    The date and time the private network was created.
    DeletableAt string
    The minimal date and time on which you can delete this server due to Apple licence
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    IPv4 address of the server (IPv4 address).
    OrganizationId string
    The organization ID the server is associated with.
    Password string
    The password of the server
    State string
    The state of the server.
    UpdatedAt string
    The date and time the private network was last updated.
    Username string
    The username of the server
    VncUrl string
    URL of the VNC.
    VpcStatus string
    The current status of the VPC option.
    createdAt String
    The date and time the private network was created.
    deletableAt String
    The minimal date and time on which you can delete this server due to Apple licence
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    IPv4 address of the server (IPv4 address).
    organizationId String
    The organization ID the server is associated with.
    password String
    The password of the server
    state String
    The state of the server.
    updatedAt String
    The date and time the private network was last updated.
    username String
    The username of the server
    vncUrl String
    URL of the VNC.
    vpcStatus String
    The current status of the VPC option.
    createdAt string
    The date and time the private network was created.
    deletableAt string
    The minimal date and time on which you can delete this server due to Apple licence
    id string
    The provider-assigned unique ID for this managed resource.
    ip string
    IPv4 address of the server (IPv4 address).
    organizationId string
    The organization ID the server is associated with.
    password string
    The password of the server
    state string
    The state of the server.
    updatedAt string
    The date and time the private network was last updated.
    username string
    The username of the server
    vncUrl string
    URL of the VNC.
    vpcStatus string
    The current status of the VPC option.
    created_at str
    The date and time the private network was created.
    deletable_at str
    The minimal date and time on which you can delete this server due to Apple licence
    id str
    The provider-assigned unique ID for this managed resource.
    ip str
    IPv4 address of the server (IPv4 address).
    organization_id str
    The organization ID the server is associated with.
    password str
    The password of the server
    state str
    The state of the server.
    updated_at str
    The date and time the private network was last updated.
    username str
    The username of the server
    vnc_url str
    URL of the VNC.
    vpc_status str
    The current status of the VPC option.
    createdAt String
    The date and time the private network was created.
    deletableAt String
    The minimal date and time on which you can delete this server due to Apple licence
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    IPv4 address of the server (IPv4 address).
    organizationId String
    The organization ID the server is associated with.
    password String
    The password of the server
    state String
    The state of the server.
    updatedAt String
    The date and time the private network was last updated.
    username String
    The username of the server
    vncUrl String
    URL of the VNC.
    vpcStatus String
    The current status of the VPC option.

    Look up Existing AppleSiliconServer Resource

    Get an existing AppleSiliconServer 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?: AppleSiliconServerState, opts?: CustomResourceOptions): AppleSiliconServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            commitment: Optional[str] = None,
            created_at: Optional[str] = None,
            deletable_at: Optional[str] = None,
            enable_vpc: Optional[bool] = None,
            ip: Optional[str] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None,
            password: Optional[str] = None,
            private_ips: Optional[Sequence[AppleSiliconServerPrivateIpArgs]] = None,
            private_networks: Optional[Sequence[AppleSiliconServerPrivateNetworkArgs]] = None,
            project_id: Optional[str] = None,
            public_bandwidth: Optional[int] = None,
            state: Optional[str] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None,
            username: Optional[str] = None,
            vnc_url: Optional[str] = None,
            vpc_status: Optional[str] = None,
            zone: Optional[str] = None) -> AppleSiliconServer
    func GetAppleSiliconServer(ctx *Context, name string, id IDInput, state *AppleSiliconServerState, opts ...ResourceOption) (*AppleSiliconServer, error)
    public static AppleSiliconServer Get(string name, Input<string> id, AppleSiliconServerState? state, CustomResourceOptions? opts = null)
    public static AppleSiliconServer get(String name, Output<String> id, AppleSiliconServerState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:AppleSiliconServer    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:
    Commitment string
    The commitment period of the server
    CreatedAt string
    The date and time the private network was created.
    DeletableAt string
    The minimal date and time on which you can delete this server due to Apple licence
    EnableVpc bool
    : Enables the VPC option when set to true.
    Ip string
    IPv4 address of the server (IPv4 address).
    Name string
    The name of the server.
    OrganizationId string
    The organization ID the server is associated with.
    Password string
    The password of the server
    PrivateIps List<Pulumiverse.Scaleway.Inputs.AppleSiliconServerPrivateIp>
    The list of private IPv4 and IPv6 addresses associated with the server.
    PrivateNetworks List<Pulumiverse.Scaleway.Inputs.AppleSiliconServerPrivateNetwork>
    The private networks to attach to the server
    ProjectId string
    project_id) The ID of the project the server is associated with.
    PublicBandwidth int
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    State string
    The state of the server.
    Type string
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    UpdatedAt string
    The date and time the private network was last updated.
    Username string
    The username of the server
    VncUrl string
    URL of the VNC.
    VpcStatus string
    The current status of the VPC option.
    Zone string
    zone) The zone in which the server should be created.
    Commitment string
    The commitment period of the server
    CreatedAt string
    The date and time the private network was created.
    DeletableAt string
    The minimal date and time on which you can delete this server due to Apple licence
    EnableVpc bool
    : Enables the VPC option when set to true.
    Ip string
    IPv4 address of the server (IPv4 address).
    Name string
    The name of the server.
    OrganizationId string
    The organization ID the server is associated with.
    Password string
    The password of the server
    PrivateIps []AppleSiliconServerPrivateIpArgs
    The list of private IPv4 and IPv6 addresses associated with the server.
    PrivateNetworks []AppleSiliconServerPrivateNetworkArgs
    The private networks to attach to the server
    ProjectId string
    project_id) The ID of the project the server is associated with.
    PublicBandwidth int
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    State string
    The state of the server.
    Type string
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    UpdatedAt string
    The date and time the private network was last updated.
    Username string
    The username of the server
    VncUrl string
    URL of the VNC.
    VpcStatus string
    The current status of the VPC option.
    Zone string
    zone) The zone in which the server should be created.
    commitment String
    The commitment period of the server
    createdAt String
    The date and time the private network was created.
    deletableAt String
    The minimal date and time on which you can delete this server due to Apple licence
    enableVpc Boolean
    : Enables the VPC option when set to true.
    ip String
    IPv4 address of the server (IPv4 address).
    name String
    The name of the server.
    organizationId String
    The organization ID the server is associated with.
    password String
    The password of the server
    privateIps List<AppleSiliconServerPrivateIp>
    The list of private IPv4 and IPv6 addresses associated with the server.
    privateNetworks List<AppleSiliconServerPrivateNetwork>
    The private networks to attach to the server
    projectId String
    project_id) The ID of the project the server is associated with.
    publicBandwidth Integer
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    state String
    The state of the server.
    type String
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    updatedAt String
    The date and time the private network was last updated.
    username String
    The username of the server
    vncUrl String
    URL of the VNC.
    vpcStatus String
    The current status of the VPC option.
    zone String
    zone) The zone in which the server should be created.
    commitment string
    The commitment period of the server
    createdAt string
    The date and time the private network was created.
    deletableAt string
    The minimal date and time on which you can delete this server due to Apple licence
    enableVpc boolean
    : Enables the VPC option when set to true.
    ip string
    IPv4 address of the server (IPv4 address).
    name string
    The name of the server.
    organizationId string
    The organization ID the server is associated with.
    password string
    The password of the server
    privateIps AppleSiliconServerPrivateIp[]
    The list of private IPv4 and IPv6 addresses associated with the server.
    privateNetworks AppleSiliconServerPrivateNetwork[]
    The private networks to attach to the server
    projectId string
    project_id) The ID of the project the server is associated with.
    publicBandwidth number
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    state string
    The state of the server.
    type string
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    updatedAt string
    The date and time the private network was last updated.
    username string
    The username of the server
    vncUrl string
    URL of the VNC.
    vpcStatus string
    The current status of the VPC option.
    zone string
    zone) The zone in which the server should be created.
    commitment str
    The commitment period of the server
    created_at str
    The date and time the private network was created.
    deletable_at str
    The minimal date and time on which you can delete this server due to Apple licence
    enable_vpc bool
    : Enables the VPC option when set to true.
    ip str
    IPv4 address of the server (IPv4 address).
    name str
    The name of the server.
    organization_id str
    The organization ID the server is associated with.
    password str
    The password of the server
    private_ips Sequence[AppleSiliconServerPrivateIpArgs]
    The list of private IPv4 and IPv6 addresses associated with the server.
    private_networks Sequence[AppleSiliconServerPrivateNetworkArgs]
    The private networks to attach to the server
    project_id str
    project_id) The ID of the project the server is associated with.
    public_bandwidth int
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    state str
    The state of the server.
    type str
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    updated_at str
    The date and time the private network was last updated.
    username str
    The username of the server
    vnc_url str
    URL of the VNC.
    vpc_status str
    The current status of the VPC option.
    zone str
    zone) The zone in which the server should be created.
    commitment String
    The commitment period of the server
    createdAt String
    The date and time the private network was created.
    deletableAt String
    The minimal date and time on which you can delete this server due to Apple licence
    enableVpc Boolean
    : Enables the VPC option when set to true.
    ip String
    IPv4 address of the server (IPv4 address).
    name String
    The name of the server.
    organizationId String
    The organization ID the server is associated with.
    password String
    The password of the server
    privateIps List<Property Map>
    The list of private IPv4 and IPv6 addresses associated with the server.
    privateNetworks List<Property Map>
    The private networks to attach to the server
    projectId String
    project_id) The ID of the project the server is associated with.
    publicBandwidth Number
    Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
    state String
    The state of the server.
    type String
    The commercial type of the server. You find all the available types on the pricing page. Updates to this field will recreate a new resource.
    updatedAt String
    The date and time the private network was last updated.
    username String
    The username of the server
    vncUrl String
    URL of the VNC.
    vpcStatus String
    The current status of the VPC option.
    zone String
    zone) The zone in which the server should be created.

    Supporting Types

    AppleSiliconServerPrivateIp, AppleSiliconServerPrivateIpArgs

    Address string
    The private IP address.
    Id string
    The ID of the IP address resource.
    Address string
    The private IP address.
    Id string
    The ID of the IP address resource.
    address String
    The private IP address.
    id String
    The ID of the IP address resource.
    address string
    The private IP address.
    id string
    The ID of the IP address resource.
    address str
    The private IP address.
    id str
    The ID of the IP address resource.
    address String
    The private IP address.
    id String
    The ID of the IP address resource.

    AppleSiliconServerPrivateNetwork, AppleSiliconServerPrivateNetworkArgs

    Id string
    The private network ID
    CreatedAt string
    The date and time the private network was created.
    IpamIpIds List<string>
    A list of IPAM IP IDs to attach to the server.
    Status string
    The current status of the private network.
    UpdatedAt string
    The date and time the private network was last updated.
    Vlan int
    The VLAN ID associated with the private network.
    Id string
    The private network ID
    CreatedAt string
    The date and time the private network was created.
    IpamIpIds []string
    A list of IPAM IP IDs to attach to the server.
    Status string
    The current status of the private network.
    UpdatedAt string
    The date and time the private network was last updated.
    Vlan int
    The VLAN ID associated with the private network.
    id String
    The private network ID
    createdAt String
    The date and time the private network was created.
    ipamIpIds List<String>
    A list of IPAM IP IDs to attach to the server.
    status String
    The current status of the private network.
    updatedAt String
    The date and time the private network was last updated.
    vlan Integer
    The VLAN ID associated with the private network.
    id string
    The private network ID
    createdAt string
    The date and time the private network was created.
    ipamIpIds string[]
    A list of IPAM IP IDs to attach to the server.
    status string
    The current status of the private network.
    updatedAt string
    The date and time the private network was last updated.
    vlan number
    The VLAN ID associated with the private network.
    id str
    The private network ID
    created_at str
    The date and time the private network was created.
    ipam_ip_ids Sequence[str]
    A list of IPAM IP IDs to attach to the server.
    status str
    The current status of the private network.
    updated_at str
    The date and time the private network was last updated.
    vlan int
    The VLAN ID associated with the private network.
    id String
    The private network ID
    createdAt String
    The date and time the private network was created.
    ipamIpIds List<String>
    A list of IPAM IP IDs to attach to the server.
    status String
    The current status of the private network.
    updatedAt String
    The date and time the private network was last updated.
    vlan Number
    The VLAN ID associated with the private network.

    Import

    Instance servers can be imported using the {zone}/{id}, e.g.

    bash

    $ pulumi import scaleway:index/appleSiliconServer:AppleSiliconServer main fr-par-1/11111111-1111-1111-1111-111111111111
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.33.0 published on Tuesday, Aug 12, 2025 by pulumiverse