1. Packages
  2. Aiven
  3. API Docs
  4. Project
Aiven v6.13.0 published on Monday, Mar 25, 2024 by Pulumi

aiven.Project

Explore with Pulumi AI

aiven logo
Aiven v6.13.0 published on Monday, Mar 25, 2024 by Pulumi

    The Project resource allows the creation and management of Aiven Projects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aiven from "@pulumi/aiven";
    
    const exampleProject = new aiven.Project("exampleProject", {
        project: "Example project",
        parentId: aiven_organization.main.id,
    });
    
    import pulumi
    import pulumi_aiven as aiven
    
    example_project = aiven.Project("exampleProject",
        project="Example project",
        parent_id=aiven_organization["main"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := aiven.NewProject(ctx, "exampleProject", &aiven.ProjectArgs{
    			Project:  pulumi.String("Example project"),
    			ParentId: pulumi.Any(aiven_organization.Main.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aiven = Pulumi.Aiven;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleProject = new Aiven.Project("exampleProject", new()
        {
            ProjectName = "Example project",
            ParentId = aiven_organization.Main.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aiven.Project;
    import com.pulumi.aiven.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 exampleProject = new Project("exampleProject", ProjectArgs.builder()        
                .project("Example project")
                .parentId(aiven_organization.main().id())
                .build());
    
        }
    }
    
    resources:
      exampleProject:
        type: aiven:Project
        properties:
          project: Example project
          parentId: ${aiven_organization.main.id}
    

    Create Project Resource

    new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
    @overload
    def Project(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                account_id: Optional[str] = None,
                add_account_owners_admin_access: Optional[bool] = None,
                billing_group: Optional[str] = None,
                copy_from_project: Optional[str] = None,
                default_cloud: Optional[str] = None,
                parent_id: Optional[str] = None,
                project: Optional[str] = None,
                tags: Optional[Sequence[ProjectTagArgs]] = None,
                technical_emails: Optional[Sequence[str]] = None,
                use_source_project_billing_group: Optional[bool] = None)
    @overload
    def Project(resource_name: str,
                args: ProjectArgs,
                opts: Optional[ResourceOptions] = None)
    func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
    public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
    public Project(String name, ProjectArgs args)
    public Project(String name, ProjectArgs args, CustomResourceOptions options)
    
    type: aiven:Project
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ProjectArgs
    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 ProjectArgs
    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 ProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Project Resource Properties

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

    Inputs

    The Project resource accepts the following input properties:

    ProjectName string
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    AccountId string
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    AddAccountOwnersAdminAccess bool
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    BillingGroup string
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    CopyFromProject string
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    DefaultCloud string
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    ParentId string
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    Tags List<ProjectTag>
    Tags are key-value pairs that allow you to categorize projects.
    TechnicalEmails List<string>
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    UseSourceProjectBillingGroup bool
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    Project string
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    AccountId string
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    AddAccountOwnersAdminAccess bool
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    BillingGroup string
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    CopyFromProject string
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    DefaultCloud string
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    ParentId string
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    Tags []ProjectTagArgs
    Tags are key-value pairs that allow you to categorize projects.
    TechnicalEmails []string
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    UseSourceProjectBillingGroup bool
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    project String
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    accountId String
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    addAccountOwnersAdminAccess Boolean
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    billingGroup String
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    copyFromProject String
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    defaultCloud String
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    parentId String
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    tags List<ProjectTag>
    Tags are key-value pairs that allow you to categorize projects.
    technicalEmails List<String>
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    useSourceProjectBillingGroup Boolean
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    project string
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    accountId string
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    addAccountOwnersAdminAccess boolean
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    billingGroup string
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    copyFromProject string
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    defaultCloud string
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    parentId string
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    tags ProjectTag[]
    Tags are key-value pairs that allow you to categorize projects.
    technicalEmails string[]
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    useSourceProjectBillingGroup boolean
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    project str
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    account_id str
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    add_account_owners_admin_access bool
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    billing_group str
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    copy_from_project str
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    default_cloud str
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    parent_id str
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    tags Sequence[ProjectTagArgs]
    Tags are key-value pairs that allow you to categorize projects.
    technical_emails Sequence[str]
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    use_source_project_billing_group bool
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    project String
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    accountId String
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    addAccountOwnersAdminAccess Boolean
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    billingGroup String
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    copyFromProject String
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    defaultCloud String
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    parentId String
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    tags List<Property Map>
    Tags are key-value pairs that allow you to categorize projects.
    technicalEmails List<String>
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    useSourceProjectBillingGroup Boolean
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    Outputs

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

    AvailableCredits string
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    CaCert string
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    EstimatedBalance string
    The current accumulated bill for this project in the current billing period.
    Id string
    The provider-assigned unique ID for this managed resource.
    PaymentMethod string
    The method of invoicing used for payments for this project, e.g. card.
    AvailableCredits string
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    CaCert string
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    EstimatedBalance string
    The current accumulated bill for this project in the current billing period.
    Id string
    The provider-assigned unique ID for this managed resource.
    PaymentMethod string
    The method of invoicing used for payments for this project, e.g. card.
    availableCredits String
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    caCert String
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    estimatedBalance String
    The current accumulated bill for this project in the current billing period.
    id String
    The provider-assigned unique ID for this managed resource.
    paymentMethod String
    The method of invoicing used for payments for this project, e.g. card.
    availableCredits string
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    caCert string
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    estimatedBalance string
    The current accumulated bill for this project in the current billing period.
    id string
    The provider-assigned unique ID for this managed resource.
    paymentMethod string
    The method of invoicing used for payments for this project, e.g. card.
    available_credits str
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    ca_cert str
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    estimated_balance str
    The current accumulated bill for this project in the current billing period.
    id str
    The provider-assigned unique ID for this managed resource.
    payment_method str
    The method of invoicing used for payments for this project, e.g. card.
    availableCredits String
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    caCert String
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    estimatedBalance String
    The current accumulated bill for this project in the current billing period.
    id String
    The provider-assigned unique ID for this managed resource.
    paymentMethod String
    The method of invoicing used for payments for this project, e.g. card.

    Look up Existing Project Resource

    Get an existing Project 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?: ProjectState, opts?: CustomResourceOptions): Project
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            add_account_owners_admin_access: Optional[bool] = None,
            available_credits: Optional[str] = None,
            billing_group: Optional[str] = None,
            ca_cert: Optional[str] = None,
            copy_from_project: Optional[str] = None,
            default_cloud: Optional[str] = None,
            estimated_balance: Optional[str] = None,
            parent_id: Optional[str] = None,
            payment_method: Optional[str] = None,
            project: Optional[str] = None,
            tags: Optional[Sequence[ProjectTagArgs]] = None,
            technical_emails: Optional[Sequence[str]] = None,
            use_source_project_billing_group: Optional[bool] = None) -> Project
    func GetProject(ctx *Context, name string, id IDInput, state *ProjectState, opts ...ResourceOption) (*Project, error)
    public static Project Get(string name, Input<string> id, ProjectState? state, CustomResourceOptions? opts = null)
    public static Project get(String name, Output<String> id, ProjectState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AccountId string
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    AddAccountOwnersAdminAccess bool
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    AvailableCredits string
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    BillingGroup string
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    CaCert string
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    CopyFromProject string
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    DefaultCloud string
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    EstimatedBalance string
    The current accumulated bill for this project in the current billing period.
    ParentId string
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    PaymentMethod string
    The method of invoicing used for payments for this project, e.g. card.
    ProjectName string
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    Tags List<ProjectTag>
    Tags are key-value pairs that allow you to categorize projects.
    TechnicalEmails List<string>
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    UseSourceProjectBillingGroup bool
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    AccountId string
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    AddAccountOwnersAdminAccess bool
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    AvailableCredits string
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    BillingGroup string
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    CaCert string
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    CopyFromProject string
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    DefaultCloud string
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    EstimatedBalance string
    The current accumulated bill for this project in the current billing period.
    ParentId string
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    PaymentMethod string
    The method of invoicing used for payments for this project, e.g. card.
    Project string
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    Tags []ProjectTagArgs
    Tags are key-value pairs that allow you to categorize projects.
    TechnicalEmails []string
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    UseSourceProjectBillingGroup bool
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    accountId String
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    addAccountOwnersAdminAccess Boolean
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    availableCredits String
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    billingGroup String
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    caCert String
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    copyFromProject String
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    defaultCloud String
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    estimatedBalance String
    The current accumulated bill for this project in the current billing period.
    parentId String
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    paymentMethod String
    The method of invoicing used for payments for this project, e.g. card.
    project String
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    tags List<ProjectTag>
    Tags are key-value pairs that allow you to categorize projects.
    technicalEmails List<String>
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    useSourceProjectBillingGroup Boolean
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    accountId string
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    addAccountOwnersAdminAccess boolean
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    availableCredits string
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    billingGroup string
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    caCert string
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    copyFromProject string
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    defaultCloud string
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    estimatedBalance string
    The current accumulated bill for this project in the current billing period.
    parentId string
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    paymentMethod string
    The method of invoicing used for payments for this project, e.g. card.
    project string
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    tags ProjectTag[]
    Tags are key-value pairs that allow you to categorize projects.
    technicalEmails string[]
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    useSourceProjectBillingGroup boolean
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    account_id str
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    add_account_owners_admin_access bool
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    available_credits str
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    billing_group str
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    ca_cert str
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    copy_from_project str
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    default_cloud str
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    estimated_balance str
    The current accumulated bill for this project in the current billing period.
    parent_id str
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    payment_method str
    The method of invoicing used for payments for this project, e.g. card.
    project str
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    tags Sequence[ProjectTagArgs]
    Tags are key-value pairs that allow you to categorize projects.
    technical_emails Sequence[str]
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    use_source_project_billing_group bool
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    accountId String
    An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.

    Deprecated:Use parent_id instead. This field will be removed in the next major release.

    addAccountOwnersAdminAccess Boolean
    If parent_id is set, grant account owner team admin access to the new project. The default value is true.

    Deprecated:This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.

    availableCredits String
    The amount of platform credits available to the project. This could be your free trial or other promotional credits.
    billingGroup String
    The id of the billing group that is linked to this project. To set up proper dependencies please refer to this variable as a reference.
    caCert String
    The CA certificate of the project. This is required for configuring clients that connect to certain services like Kafka.
    copyFromProject String
    is the name of another project used to copy billing information and some other project attributes like technical contacts from. This is mostly relevant when an existing project has billing type set to invoice and that needs to be copied over to a new project. (Setting billing is otherwise not allowed over the API.) This only has effect when the project is created. To set up proper dependencies please refer to this variable as a reference.
    defaultCloud String
    Defines the default cloud provider and region where services are hosted. This can be changed freely after the project is created. This will not affect existing services.
    estimatedBalance String
    The current accumulated bill for this project in the current billing period.
    parentId String
    An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
    paymentMethod String
    The method of invoicing used for payments for this project, e.g. card.
    project String
    Defines the name of the project. Name must be globally unique (between all Aiven customers) and cannot be changed later without destroying and re-creating the project, including all sub-resources.
    tags List<Property Map>
    Tags are key-value pairs that allow you to categorize projects.
    technicalEmails List<String>
    Defines the email addresses that will receive alerts about upcoming maintenance updates or warnings about service instability. It is a good practice to keep this up-to-date to be aware of any potential issues with your project.
    useSourceProjectBillingGroup Boolean
    Use the same billing group that is used in source project.

    Deprecated:This field is deprecated and will be removed in the next major release.

    Supporting Types

    ProjectTag, ProjectTagArgs

    Key string
    Project tag key
    Value string
    Project tag value
    Key string
    Project tag key
    Value string
    Project tag value
    key String
    Project tag key
    value String
    Project tag value
    key string
    Project tag key
    value string
    Project tag value
    key str
    Project tag key
    value str
    Project tag value
    key String
    Project tag key
    value String
    Project tag value

    Import

    $ pulumi import aiven:index/project:Project myproject project
    

    Package Details

    Repository
    Aiven pulumi/pulumi-aiven
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aiven Terraform Provider.
    aiven logo
    Aiven v6.13.0 published on Monday, Mar 25, 2024 by Pulumi