1. Packages
  2. Packages
  3. Scaleway
  4. API Docs
  5. AccountProject
Viewing docs for Scaleway v1.48.0
published on Wednesday, Apr 29, 2026 by pulumiverse
scaleway logo
Viewing docs for Scaleway v1.48.0
published on Wednesday, Apr 29, 2026 by pulumiverse
    Deprecated: scaleway.index/accountproject.AccountProject has been deprecated in favor of scaleway.account/project.Project

    The scaleway.account.Project resource allows you to create and manage the Projects of a Scaleway Organization.

    Refer to the Organizations and Projects documentation and API documentation for more information.

    Example Usage

    Create a Scaleway Project

    The following command allows you to create a project named project.

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const project = new scaleway.account.Project("project", {name: "project"});
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    project = scaleway.account.Project("project", name="project")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/account"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := account.NewProject(ctx, "project", &account.ProjectArgs{
    			Name: pulumi.String("project"),
    		})
    		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 project = new Scaleway.Account.Project("project", new()
        {
            Name = "project",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.account.Project;
    import com.pulumi.scaleway.account.ProjectArgs;
    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 project = new Project("project", ProjectArgs.builder()
                .name("project")
                .build());
    
        }
    }
    
    resources:
      project:
        type: scaleway:account:Project
        properties:
          name: project
    

    Use a project in provider configuration

    If you want to use as default a project created in terraform you can use a temporary provider alias. This project can then be used to configure your default provider.

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const project = new scaleway.account.Project("project", {name: "my_project"});
    const server = new scaleway.instance.Server("server", {
        image: "ubuntu_jammy",
        type: "PRO2-XXS",
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    project = scaleway.account.Project("project", name="my_project")
    server = scaleway.instance.Server("server",
        image="ubuntu_jammy",
        type="PRO2-XXS")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/account"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/instance"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := account.NewProject(ctx, "project", &account.ProjectArgs{
    			Name: pulumi.String("my_project"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = instance.NewServer(ctx, "server", &instance.ServerArgs{
    			Image: pulumi.String("ubuntu_jammy"),
    			Type:  pulumi.String("PRO2-XXS"),
    		})
    		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 project = new Scaleway.Account.Project("project", new()
        {
            Name = "my_project",
        });
    
        var server = new Scaleway.Instance.Server("server", new()
        {
            Image = "ubuntu_jammy",
            Type = "PRO2-XXS",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.account.Project;
    import com.pulumi.scaleway.account.ProjectArgs;
    import com.pulumi.scaleway.instance.Server;
    import com.pulumi.scaleway.instance.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 project = new Project("project", ProjectArgs.builder()
                .name("my_project")
                .build());
    
            var server = new Server("server", ServerArgs.builder()
                .image("ubuntu_jammy")
                .type("PRO2-XXS")
                .build());
    
        }
    }
    
    resources:
      project:
        type: scaleway:account:Project
        properties:
          name: my_project
      server:
        type: scaleway:instance:Server
        properties:
          image: ubuntu_jammy
          type: PRO2-XXS
    

    Create AccountProject Resource

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

    Constructor syntax

    new AccountProject(name: string, args?: AccountProjectArgs, opts?: CustomResourceOptions);
    @overload
    def AccountProject(resource_name: str,
                       args: Optional[AccountProjectArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccountProject(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       description: Optional[str] = None,
                       name: Optional[str] = None,
                       organization_id: Optional[str] = None)
    func NewAccountProject(ctx *Context, name string, args *AccountProjectArgs, opts ...ResourceOption) (*AccountProject, error)
    public AccountProject(string name, AccountProjectArgs? args = null, CustomResourceOptions? opts = null)
    public AccountProject(String name, AccountProjectArgs args)
    public AccountProject(String name, AccountProjectArgs args, CustomResourceOptions options)
    
    type: scaleway:AccountProject
    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 AccountProjectArgs
    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 AccountProjectArgs
    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 AccountProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountProjectArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Description string
    The description of the Project.
    Name string
    The name of the Project.
    OrganizationId string
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    Description string
    The description of the Project.
    Name string
    The name of the Project.
    OrganizationId string
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    description String
    The description of the Project.
    name String
    The name of the Project.
    organizationId String
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    description string
    The description of the Project.
    name string
    The name of the Project.
    organizationId string
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    description str
    The description of the Project.
    name str
    The name of the Project.
    organization_id str
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    description String
    The description of the Project.
    name String
    The name of the Project.
    organizationId String
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.

    Outputs

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

    CreatedAt string
    The creation time of the Project.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The last update time of the Project.
    CreatedAt string
    The creation time of the Project.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The last update time of the Project.
    createdAt String
    The creation time of the Project.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The last update time of the Project.
    createdAt string
    The creation time of the Project.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    The last update time of the Project.
    created_at str
    The creation time of the Project.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    The last update time of the Project.
    createdAt String
    The creation time of the Project.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The last update time of the Project.

    Look up Existing AccountProject Resource

    Get an existing AccountProject 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?: AccountProjectState, opts?: CustomResourceOptions): AccountProject
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None,
            updated_at: Optional[str] = None) -> AccountProject
    func GetAccountProject(ctx *Context, name string, id IDInput, state *AccountProjectState, opts ...ResourceOption) (*AccountProject, error)
    public static AccountProject Get(string name, Input<string> id, AccountProjectState? state, CustomResourceOptions? opts = null)
    public static AccountProject get(String name, Output<String> id, AccountProjectState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:AccountProject    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:
    CreatedAt string
    The creation time of the Project.
    Description string
    The description of the Project.
    Name string
    The name of the Project.
    OrganizationId string
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    UpdatedAt string
    The last update time of the Project.
    CreatedAt string
    The creation time of the Project.
    Description string
    The description of the Project.
    Name string
    The name of the Project.
    OrganizationId string
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    UpdatedAt string
    The last update time of the Project.
    createdAt String
    The creation time of the Project.
    description String
    The description of the Project.
    name String
    The name of the Project.
    organizationId String
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    updatedAt String
    The last update time of the Project.
    createdAt string
    The creation time of the Project.
    description string
    The description of the Project.
    name string
    The name of the Project.
    organizationId string
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    updatedAt string
    The last update time of the Project.
    created_at str
    The creation time of the Project.
    description str
    The description of the Project.
    name str
    The name of the Project.
    organization_id str
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    updated_at str
    The last update time of the Project.
    createdAt String
    The creation time of the Project.
    description String
    The description of the Project.
    name String
    The name of the Project.
    organizationId String
    organizationId)The organization ID the Project is associated with. Any change made to the organizationId will recreate the resource.
    updatedAt String
    The last update time of the Project.

    Import

    Projects can be imported using the id argument, as shown below:

    $ pulumi import scaleway:index/accountProject:AccountProject project 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
    Viewing docs for Scaleway v1.48.0
    published on Wednesday, Apr 29, 2026 by pulumiverse
      Try Pulumi Cloud free. Your team will thank you.