1. Packages
  2. Qovery
  3. API Docs
  4. Project
Qovery v0.41.0 published on Saturday, Sep 28, 2024 by dirien

qovery.Project

Explore with Pulumi AI

# qovery.Project (Resource)

Provides a Qovery project resource. This can be used to create and manage Qovery projects.

Example

import * as pulumi from "@pulumi/pulumi";
import * as qovery from "@ediri/qovery";

const myProject = new qovery.Project("myProject", {
    organizationId: qovery_organization.my_organization.id,
    description: "My project description",
    environmentVariables: [{
        key: "ENV_VAR_KEY",
        value: "ENV_VAR_VALUE",
    }],
    environmentVariableAliases: [{
        key: "ENV_VAR_KEY_ALIAS",
        value: "ENV_VAR_KEY",
    }],
    secrets: [{
        key: "SECRET_KEY",
        value: "SECRET_VALUE",
    }],
    secretAliases: [{
        key: "SECRET_KEY_ALIAS",
        value: "SECRET_KEY",
    }],
}, {
    dependsOn: [qovery_organization.my_organization],
});
Copy
import pulumi
import ediri_qovery as qovery

my_project = qovery.Project("myProject",
    organization_id=qovery_organization["my_organization"]["id"],
    description="My project description",
    environment_variables=[{
        "key": "ENV_VAR_KEY",
        "value": "ENV_VAR_VALUE",
    }],
    environment_variable_aliases=[{
        "key": "ENV_VAR_KEY_ALIAS",
        "value": "ENV_VAR_KEY",
    }],
    secrets=[{
        "key": "SECRET_KEY",
        "value": "SECRET_VALUE",
    }],
    secret_aliases=[{
        "key": "SECRET_KEY_ALIAS",
        "value": "SECRET_KEY",
    }],
    opts = pulumi.ResourceOptions(depends_on=[qovery_organization["my_organization"]]))
Copy
package main

import (
	"github.com/dirien/pulumi-qovery/sdk/go/qovery"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := qovery.NewProject(ctx, "myProject", &qovery.ProjectArgs{
			OrganizationId: pulumi.Any(qovery_organization.My_organization.Id),
			Description:    pulumi.String("My project description"),
			EnvironmentVariables: qovery.ProjectEnvironmentVariableArray{
				&qovery.ProjectEnvironmentVariableArgs{
					Key:   pulumi.String("ENV_VAR_KEY"),
					Value: pulumi.String("ENV_VAR_VALUE"),
				},
			},
			EnvironmentVariableAliases: qovery.ProjectEnvironmentVariableAliasArray{
				&qovery.ProjectEnvironmentVariableAliasArgs{
					Key:   pulumi.String("ENV_VAR_KEY_ALIAS"),
					Value: pulumi.String("ENV_VAR_KEY"),
				},
			},
			Secrets: qovery.ProjectSecretArray{
				&qovery.ProjectSecretArgs{
					Key:   pulumi.String("SECRET_KEY"),
					Value: pulumi.String("SECRET_VALUE"),
				},
			},
			SecretAliases: qovery.ProjectSecretAliasArray{
				&qovery.ProjectSecretAliasArgs{
					Key:   pulumi.String("SECRET_KEY_ALIAS"),
					Value: pulumi.String("SECRET_KEY"),
				},
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			qovery_organization.My_organization,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Qovery = ediri.Qovery;

return await Deployment.RunAsync(() => 
{
    var myProject = new Qovery.Project("myProject", new()
    {
        OrganizationId = qovery_organization.My_organization.Id,
        Description = "My project description",
        EnvironmentVariables = new[]
        {
            new Qovery.Inputs.ProjectEnvironmentVariableArgs
            {
                Key = "ENV_VAR_KEY",
                Value = "ENV_VAR_VALUE",
            },
        },
        EnvironmentVariableAliases = new[]
        {
            new Qovery.Inputs.ProjectEnvironmentVariableAliasArgs
            {
                Key = "ENV_VAR_KEY_ALIAS",
                Value = "ENV_VAR_KEY",
            },
        },
        Secrets = new[]
        {
            new Qovery.Inputs.ProjectSecretArgs
            {
                Key = "SECRET_KEY",
                Value = "SECRET_VALUE",
            },
        },
        SecretAliases = new[]
        {
            new Qovery.Inputs.ProjectSecretAliasArgs
            {
                Key = "SECRET_KEY_ALIAS",
                Value = "SECRET_KEY",
            },
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            qovery_organization.My_organization,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.qovery.Project;
import com.pulumi.qovery.ProjectArgs;
import com.pulumi.qovery.inputs.ProjectEnvironmentVariableArgs;
import com.pulumi.qovery.inputs.ProjectEnvironmentVariableAliasArgs;
import com.pulumi.qovery.inputs.ProjectSecretArgs;
import com.pulumi.qovery.inputs.ProjectSecretAliasArgs;
import com.pulumi.resources.CustomResourceOptions;
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 myProject = new Project("myProject", ProjectArgs.builder()
            .organizationId(qovery_organization.my_organization().id())
            .description("My project description")
            .environmentVariables(ProjectEnvironmentVariableArgs.builder()
                .key("ENV_VAR_KEY")
                .value("ENV_VAR_VALUE")
                .build())
            .environmentVariableAliases(ProjectEnvironmentVariableAliasArgs.builder()
                .key("ENV_VAR_KEY_ALIAS")
                .value("ENV_VAR_KEY")
                .build())
            .secrets(ProjectSecretArgs.builder()
                .key("SECRET_KEY")
                .value("SECRET_VALUE")
                .build())
            .secretAliases(ProjectSecretAliasArgs.builder()
                .key("SECRET_KEY_ALIAS")
                .value("SECRET_KEY")
                .build())
            .build(), CustomResourceOptions.builder()
                .dependsOn(qovery_organization.my_organization())
                .build());

    }
}
Copy
resources:
  myProject:
    type: qovery:Project
    properties:
      # Required
      organizationId: ${qovery_organization.my_organization.id}
      # Optional
      description: My project description
      environmentVariables:
        - key: ENV_VAR_KEY
          value: ENV_VAR_VALUE
      environmentVariableAliases:
        - key: ENV_VAR_KEY_ALIAS
          value: ENV_VAR_KEY
      secrets:
        - key: SECRET_KEY
          value: SECRET_VALUE
      secretAliases:
        - key: SECRET_KEY_ALIAS
          value: SECRET_KEY
    options:
      dependson:
        - ${qovery_organization.my_organization}
Copy

Create Project Resource

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

Constructor syntax

new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
@overload
def Project(resource_name: str,
            args: ProjectArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Project(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            organization_id: Optional[str] = None,
            description: Optional[str] = None,
            environment_variable_aliases: Optional[Sequence[ProjectEnvironmentVariableAliasArgs]] = None,
            environment_variables: Optional[Sequence[ProjectEnvironmentVariableArgs]] = None,
            name: Optional[str] = None,
            secret_aliases: Optional[Sequence[ProjectSecretAliasArgs]] = None,
            secrets: Optional[Sequence[ProjectSecretArgs]] = 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: qovery:Project
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ProjectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ProjectArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ProjectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ProjectArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

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

var projectResource = new Qovery.Project("projectResource", new()
{
    OrganizationId = "string",
    Description = "string",
    EnvironmentVariableAliases = new[]
    {
        new Qovery.Inputs.ProjectEnvironmentVariableAliasArgs
        {
            Key = "string",
            Value = "string",
            Description = "string",
            Id = "string",
        },
    },
    EnvironmentVariables = new[]
    {
        new Qovery.Inputs.ProjectEnvironmentVariableArgs
        {
            Key = "string",
            Value = "string",
            Description = "string",
            Id = "string",
        },
    },
    Name = "string",
    SecretAliases = new[]
    {
        new Qovery.Inputs.ProjectSecretAliasArgs
        {
            Key = "string",
            Value = "string",
            Description = "string",
            Id = "string",
        },
    },
    Secrets = new[]
    {
        new Qovery.Inputs.ProjectSecretArgs
        {
            Key = "string",
            Value = "string",
            Description = "string",
            Id = "string",
        },
    },
});
Copy
example, err := qovery.NewProject(ctx, "projectResource", &qovery.ProjectArgs{
	OrganizationId: pulumi.String("string"),
	Description:    pulumi.String("string"),
	EnvironmentVariableAliases: qovery.ProjectEnvironmentVariableAliasArray{
		&qovery.ProjectEnvironmentVariableAliasArgs{
			Key:         pulumi.String("string"),
			Value:       pulumi.String("string"),
			Description: pulumi.String("string"),
			Id:          pulumi.String("string"),
		},
	},
	EnvironmentVariables: qovery.ProjectEnvironmentVariableArray{
		&qovery.ProjectEnvironmentVariableArgs{
			Key:         pulumi.String("string"),
			Value:       pulumi.String("string"),
			Description: pulumi.String("string"),
			Id:          pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
	SecretAliases: qovery.ProjectSecretAliasArray{
		&qovery.ProjectSecretAliasArgs{
			Key:         pulumi.String("string"),
			Value:       pulumi.String("string"),
			Description: pulumi.String("string"),
			Id:          pulumi.String("string"),
		},
	},
	Secrets: qovery.ProjectSecretArray{
		&qovery.ProjectSecretArgs{
			Key:         pulumi.String("string"),
			Value:       pulumi.String("string"),
			Description: pulumi.String("string"),
			Id:          pulumi.String("string"),
		},
	},
})
Copy
var projectResource = new Project("projectResource", ProjectArgs.builder()
    .organizationId("string")
    .description("string")
    .environmentVariableAliases(ProjectEnvironmentVariableAliasArgs.builder()
        .key("string")
        .value("string")
        .description("string")
        .id("string")
        .build())
    .environmentVariables(ProjectEnvironmentVariableArgs.builder()
        .key("string")
        .value("string")
        .description("string")
        .id("string")
        .build())
    .name("string")
    .secretAliases(ProjectSecretAliasArgs.builder()
        .key("string")
        .value("string")
        .description("string")
        .id("string")
        .build())
    .secrets(ProjectSecretArgs.builder()
        .key("string")
        .value("string")
        .description("string")
        .id("string")
        .build())
    .build());
Copy
project_resource = qovery.Project("projectResource",
    organization_id="string",
    description="string",
    environment_variable_aliases=[{
        "key": "string",
        "value": "string",
        "description": "string",
        "id": "string",
    }],
    environment_variables=[{
        "key": "string",
        "value": "string",
        "description": "string",
        "id": "string",
    }],
    name="string",
    secret_aliases=[{
        "key": "string",
        "value": "string",
        "description": "string",
        "id": "string",
    }],
    secrets=[{
        "key": "string",
        "value": "string",
        "description": "string",
        "id": "string",
    }])
Copy
const projectResource = new qovery.Project("projectResource", {
    organizationId: "string",
    description: "string",
    environmentVariableAliases: [{
        key: "string",
        value: "string",
        description: "string",
        id: "string",
    }],
    environmentVariables: [{
        key: "string",
        value: "string",
        description: "string",
        id: "string",
    }],
    name: "string",
    secretAliases: [{
        key: "string",
        value: "string",
        description: "string",
        id: "string",
    }],
    secrets: [{
        key: "string",
        value: "string",
        description: "string",
        id: "string",
    }],
});
Copy
type: qovery:Project
properties:
    description: string
    environmentVariableAliases:
        - description: string
          id: string
          key: string
          value: string
    environmentVariables:
        - description: string
          id: string
          key: string
          value: string
    name: string
    organizationId: string
    secretAliases:
        - description: string
          id: string
          key: string
          value: string
    secrets:
        - description: string
          id: string
          key: string
          value: string
Copy

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

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

The Project resource accepts the following input properties:

OrganizationId This property is required. string
Id of the organization.
Description string
Description of the project.
EnvironmentVariableAliases List<ediri.Qovery.Inputs.ProjectEnvironmentVariableAlias>
List of environment variable aliases linked to this project.
EnvironmentVariables List<ediri.Qovery.Inputs.ProjectEnvironmentVariable>
List of environment variables linked to this project.
Name string
Name of the project.
SecretAliases List<ediri.Qovery.Inputs.ProjectSecretAlias>
List of secret aliases linked to this project.
Secrets List<ediri.Qovery.Inputs.ProjectSecret>
List of secrets linked to this project.
OrganizationId This property is required. string
Id of the organization.
Description string
Description of the project.
EnvironmentVariableAliases []ProjectEnvironmentVariableAliasArgs
List of environment variable aliases linked to this project.
EnvironmentVariables []ProjectEnvironmentVariableArgs
List of environment variables linked to this project.
Name string
Name of the project.
SecretAliases []ProjectSecretAliasArgs
List of secret aliases linked to this project.
Secrets []ProjectSecretArgs
List of secrets linked to this project.
organizationId This property is required. String
Id of the organization.
description String
Description of the project.
environmentVariableAliases List<ProjectEnvironmentVariableAlias>
List of environment variable aliases linked to this project.
environmentVariables List<ProjectEnvironmentVariable>
List of environment variables linked to this project.
name String
Name of the project.
secretAliases List<ProjectSecretAlias>
List of secret aliases linked to this project.
secrets List<ProjectSecret>
List of secrets linked to this project.
organizationId This property is required. string
Id of the organization.
description string
Description of the project.
environmentVariableAliases ProjectEnvironmentVariableAlias[]
List of environment variable aliases linked to this project.
environmentVariables ProjectEnvironmentVariable[]
List of environment variables linked to this project.
name string
Name of the project.
secretAliases ProjectSecretAlias[]
List of secret aliases linked to this project.
secrets ProjectSecret[]
List of secrets linked to this project.
organization_id This property is required. str
Id of the organization.
description str
Description of the project.
environment_variable_aliases Sequence[ProjectEnvironmentVariableAliasArgs]
List of environment variable aliases linked to this project.
environment_variables Sequence[ProjectEnvironmentVariableArgs]
List of environment variables linked to this project.
name str
Name of the project.
secret_aliases Sequence[ProjectSecretAliasArgs]
List of secret aliases linked to this project.
secrets Sequence[ProjectSecretArgs]
List of secrets linked to this project.
organizationId This property is required. String
Id of the organization.
description String
Description of the project.
environmentVariableAliases List<Property Map>
List of environment variable aliases linked to this project.
environmentVariables List<Property Map>
List of environment variables linked to this project.
name String
Name of the project.
secretAliases List<Property Map>
List of secret aliases linked to this project.
secrets List<Property Map>
List of secrets linked to this project.

Outputs

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

BuiltInEnvironmentVariables List<ediri.Qovery.Outputs.ProjectBuiltInEnvironmentVariable>
List of built-in environment variables linked to this project.
Id string
The provider-assigned unique ID for this managed resource.
BuiltInEnvironmentVariables []ProjectBuiltInEnvironmentVariable
List of built-in environment variables linked to this project.
Id string
The provider-assigned unique ID for this managed resource.
builtInEnvironmentVariables List<ProjectBuiltInEnvironmentVariable>
List of built-in environment variables linked to this project.
id String
The provider-assigned unique ID for this managed resource.
builtInEnvironmentVariables ProjectBuiltInEnvironmentVariable[]
List of built-in environment variables linked to this project.
id string
The provider-assigned unique ID for this managed resource.
built_in_environment_variables Sequence[ProjectBuiltInEnvironmentVariable]
List of built-in environment variables linked to this project.
id str
The provider-assigned unique ID for this managed resource.
builtInEnvironmentVariables List<Property Map>
List of built-in environment variables linked to this project.
id String
The provider-assigned unique ID for this managed resource.

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,
        built_in_environment_variables: Optional[Sequence[ProjectBuiltInEnvironmentVariableArgs]] = None,
        description: Optional[str] = None,
        environment_variable_aliases: Optional[Sequence[ProjectEnvironmentVariableAliasArgs]] = None,
        environment_variables: Optional[Sequence[ProjectEnvironmentVariableArgs]] = None,
        name: Optional[str] = None,
        organization_id: Optional[str] = None,
        secret_aliases: Optional[Sequence[ProjectSecretAliasArgs]] = None,
        secrets: Optional[Sequence[ProjectSecretArgs]] = 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)
resources:  _:    type: qovery:Project    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
BuiltInEnvironmentVariables List<ediri.Qovery.Inputs.ProjectBuiltInEnvironmentVariable>
List of built-in environment variables linked to this project.
Description string
Description of the project.
EnvironmentVariableAliases List<ediri.Qovery.Inputs.ProjectEnvironmentVariableAlias>
List of environment variable aliases linked to this project.
EnvironmentVariables List<ediri.Qovery.Inputs.ProjectEnvironmentVariable>
List of environment variables linked to this project.
Name string
Name of the project.
OrganizationId string
Id of the organization.
SecretAliases List<ediri.Qovery.Inputs.ProjectSecretAlias>
List of secret aliases linked to this project.
Secrets List<ediri.Qovery.Inputs.ProjectSecret>
List of secrets linked to this project.
BuiltInEnvironmentVariables []ProjectBuiltInEnvironmentVariableArgs
List of built-in environment variables linked to this project.
Description string
Description of the project.
EnvironmentVariableAliases []ProjectEnvironmentVariableAliasArgs
List of environment variable aliases linked to this project.
EnvironmentVariables []ProjectEnvironmentVariableArgs
List of environment variables linked to this project.
Name string
Name of the project.
OrganizationId string
Id of the organization.
SecretAliases []ProjectSecretAliasArgs
List of secret aliases linked to this project.
Secrets []ProjectSecretArgs
List of secrets linked to this project.
builtInEnvironmentVariables List<ProjectBuiltInEnvironmentVariable>
List of built-in environment variables linked to this project.
description String
Description of the project.
environmentVariableAliases List<ProjectEnvironmentVariableAlias>
List of environment variable aliases linked to this project.
environmentVariables List<ProjectEnvironmentVariable>
List of environment variables linked to this project.
name String
Name of the project.
organizationId String
Id of the organization.
secretAliases List<ProjectSecretAlias>
List of secret aliases linked to this project.
secrets List<ProjectSecret>
List of secrets linked to this project.
builtInEnvironmentVariables ProjectBuiltInEnvironmentVariable[]
List of built-in environment variables linked to this project.
description string
Description of the project.
environmentVariableAliases ProjectEnvironmentVariableAlias[]
List of environment variable aliases linked to this project.
environmentVariables ProjectEnvironmentVariable[]
List of environment variables linked to this project.
name string
Name of the project.
organizationId string
Id of the organization.
secretAliases ProjectSecretAlias[]
List of secret aliases linked to this project.
secrets ProjectSecret[]
List of secrets linked to this project.
built_in_environment_variables Sequence[ProjectBuiltInEnvironmentVariableArgs]
List of built-in environment variables linked to this project.
description str
Description of the project.
environment_variable_aliases Sequence[ProjectEnvironmentVariableAliasArgs]
List of environment variable aliases linked to this project.
environment_variables Sequence[ProjectEnvironmentVariableArgs]
List of environment variables linked to this project.
name str
Name of the project.
organization_id str
Id of the organization.
secret_aliases Sequence[ProjectSecretAliasArgs]
List of secret aliases linked to this project.
secrets Sequence[ProjectSecretArgs]
List of secrets linked to this project.
builtInEnvironmentVariables List<Property Map>
List of built-in environment variables linked to this project.
description String
Description of the project.
environmentVariableAliases List<Property Map>
List of environment variable aliases linked to this project.
environmentVariables List<Property Map>
List of environment variables linked to this project.
name String
Name of the project.
organizationId String
Id of the organization.
secretAliases List<Property Map>
List of secret aliases linked to this project.
secrets List<Property Map>
List of secrets linked to this project.

Supporting Types

ProjectBuiltInEnvironmentVariable
, ProjectBuiltInEnvironmentVariableArgs

Description string
Description of the environment variable.
Id string
Id of the environment variable.
Key string
Key of the environment variable.
Value string
Value of the environment variable.
Description string
Description of the environment variable.
Id string
Id of the environment variable.
Key string
Key of the environment variable.
Value string
Value of the environment variable.
description String
Description of the environment variable.
id String
Id of the environment variable.
key String
Key of the environment variable.
value String
Value of the environment variable.
description string
Description of the environment variable.
id string
Id of the environment variable.
key string
Key of the environment variable.
value string
Value of the environment variable.
description str
Description of the environment variable.
id str
Id of the environment variable.
key str
Key of the environment variable.
value str
Value of the environment variable.
description String
Description of the environment variable.
id String
Id of the environment variable.
key String
Key of the environment variable.
value String
Value of the environment variable.

ProjectEnvironmentVariable
, ProjectEnvironmentVariableArgs

Key This property is required. string
Key of the environment variable.
Value This property is required. string
Value of the environment variable.
Description string
Description of the environment variable.
Id string
Id of the environment variable.
Key This property is required. string
Key of the environment variable.
Value This property is required. string
Value of the environment variable.
Description string
Description of the environment variable.
Id string
Id of the environment variable.
key This property is required. String
Key of the environment variable.
value This property is required. String
Value of the environment variable.
description String
Description of the environment variable.
id String
Id of the environment variable.
key This property is required. string
Key of the environment variable.
value This property is required. string
Value of the environment variable.
description string
Description of the environment variable.
id string
Id of the environment variable.
key This property is required. str
Key of the environment variable.
value This property is required. str
Value of the environment variable.
description str
Description of the environment variable.
id str
Id of the environment variable.
key This property is required. String
Key of the environment variable.
value This property is required. String
Value of the environment variable.
description String
Description of the environment variable.
id String
Id of the environment variable.

ProjectEnvironmentVariableAlias
, ProjectEnvironmentVariableAliasArgs

Key This property is required. string
Name of the environment variable alias.
Value This property is required. string
Name of the variable to alias.
Description string
Description of the environment variable alias.
Id string
Id of the environment variable alias.
Key This property is required. string
Name of the environment variable alias.
Value This property is required. string
Name of the variable to alias.
Description string
Description of the environment variable alias.
Id string
Id of the environment variable alias.
key This property is required. String
Name of the environment variable alias.
value This property is required. String
Name of the variable to alias.
description String
Description of the environment variable alias.
id String
Id of the environment variable alias.
key This property is required. string
Name of the environment variable alias.
value This property is required. string
Name of the variable to alias.
description string
Description of the environment variable alias.
id string
Id of the environment variable alias.
key This property is required. str
Name of the environment variable alias.
value This property is required. str
Name of the variable to alias.
description str
Description of the environment variable alias.
id str
Id of the environment variable alias.
key This property is required. String
Name of the environment variable alias.
value This property is required. String
Name of the variable to alias.
description String
Description of the environment variable alias.
id String
Id of the environment variable alias.

ProjectSecret
, ProjectSecretArgs

Key This property is required. string
Key of the secret.
Value This property is required. string
Value of the secret.
Description string
Description of the secret.
Id string
Id of the secret.
Key This property is required. string
Key of the secret.
Value This property is required. string
Value of the secret.
Description string
Description of the secret.
Id string
Id of the secret.
key This property is required. String
Key of the secret.
value This property is required. String
Value of the secret.
description String
Description of the secret.
id String
Id of the secret.
key This property is required. string
Key of the secret.
value This property is required. string
Value of the secret.
description string
Description of the secret.
id string
Id of the secret.
key This property is required. str
Key of the secret.
value This property is required. str
Value of the secret.
description str
Description of the secret.
id str
Id of the secret.
key This property is required. String
Key of the secret.
value This property is required. String
Value of the secret.
description String
Description of the secret.
id String
Id of the secret.

ProjectSecretAlias
, ProjectSecretAliasArgs

Key This property is required. string
Name of the secret alias.
Value This property is required. string
Name of the secret to alias.
Description string
Description of the secret alias.
Id string
Id of the secret alias.
Key This property is required. string
Name of the secret alias.
Value This property is required. string
Name of the secret to alias.
Description string
Description of the secret alias.
Id string
Id of the secret alias.
key This property is required. String
Name of the secret alias.
value This property is required. String
Name of the secret to alias.
description String
Description of the secret alias.
id String
Id of the secret alias.
key This property is required. string
Name of the secret alias.
value This property is required. string
Name of the secret to alias.
description string
Description of the secret alias.
id string
Id of the secret alias.
key This property is required. str
Name of the secret alias.
value This property is required. str
Name of the secret to alias.
description str
Description of the secret alias.
id str
Id of the secret alias.
key This property is required. String
Name of the secret alias.
value This property is required. String
Name of the secret to alias.
description String
Description of the secret alias.
id String
Id of the secret alias.

Import

$ pulumi import qovery:index/project:Project my_project "<project_id>"
Copy

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

Package Details

Repository
qovery dirien/pulumi-qovery
License
Apache-2.0
Notes
This Pulumi package is based on the qovery Terraform Provider.