1. Packages
  2. Qovery
  3. API Docs
  4. Project
Qovery v0.28.10 published on Friday, Jun 7, 2024 by dirien

qovery.Project

Explore with Pulumi AI

qovery logo
Qovery v0.28.10 published on Friday, Jun 7, 2024 by dirien

    # 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],
    });
    
    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=[qovery.ProjectEnvironmentVariableArgs(
            key="ENV_VAR_KEY",
            value="ENV_VAR_VALUE",
        )],
        environment_variable_aliases=[qovery.ProjectEnvironmentVariableAliasArgs(
            key="ENV_VAR_KEY_ALIAS",
            value="ENV_VAR_KEY",
        )],
        secrets=[qovery.ProjectSecretArgs(
            key="SECRET_KEY",
            value="SECRET_VALUE",
        )],
        secret_aliases=[qovery.ProjectSecretAliasArgs(
            key="SECRET_KEY_ALIAS",
            value="SECRET_KEY",
        )],
        opts=pulumi.ResourceOptions(depends_on=[qovery_organization["my_organization"]]))
    
    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
    	})
    }
    
    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,
            },
        });
    
    });
    
    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());
    
        }
    }
    
    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}
    

    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 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.

    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",
                Id = "string",
            },
        },
        EnvironmentVariables = new[]
        {
            new Qovery.Inputs.ProjectEnvironmentVariableArgs
            {
                Key = "string",
                Value = "string",
                Id = "string",
            },
        },
        Name = "string",
        SecretAliases = new[]
        {
            new Qovery.Inputs.ProjectSecretAliasArgs
            {
                Key = "string",
                Value = "string",
                Id = "string",
            },
        },
        Secrets = new[]
        {
            new Qovery.Inputs.ProjectSecretArgs
            {
                Key = "string",
                Value = "string",
                Id = "string",
            },
        },
    });
    
    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"),
    			Id:    pulumi.String("string"),
    		},
    	},
    	EnvironmentVariables: qovery.ProjectEnvironmentVariableArray{
    		&qovery.ProjectEnvironmentVariableArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    			Id:    pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	SecretAliases: qovery.ProjectSecretAliasArray{
    		&qovery.ProjectSecretAliasArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    			Id:    pulumi.String("string"),
    		},
    	},
    	Secrets: qovery.ProjectSecretArray{
    		&qovery.ProjectSecretArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    			Id:    pulumi.String("string"),
    		},
    	},
    })
    
    var projectResource = new Project("projectResource", ProjectArgs.builder()
        .organizationId("string")
        .description("string")
        .environmentVariableAliases(ProjectEnvironmentVariableAliasArgs.builder()
            .key("string")
            .value("string")
            .id("string")
            .build())
        .environmentVariables(ProjectEnvironmentVariableArgs.builder()
            .key("string")
            .value("string")
            .id("string")
            .build())
        .name("string")
        .secretAliases(ProjectSecretAliasArgs.builder()
            .key("string")
            .value("string")
            .id("string")
            .build())
        .secrets(ProjectSecretArgs.builder()
            .key("string")
            .value("string")
            .id("string")
            .build())
        .build());
    
    project_resource = qovery.Project("projectResource",
        organization_id="string",
        description="string",
        environment_variable_aliases=[qovery.ProjectEnvironmentVariableAliasArgs(
            key="string",
            value="string",
            id="string",
        )],
        environment_variables=[qovery.ProjectEnvironmentVariableArgs(
            key="string",
            value="string",
            id="string",
        )],
        name="string",
        secret_aliases=[qovery.ProjectSecretAliasArgs(
            key="string",
            value="string",
            id="string",
        )],
        secrets=[qovery.ProjectSecretArgs(
            key="string",
            value="string",
            id="string",
        )])
    
    const projectResource = new qovery.Project("projectResource", {
        organizationId: "string",
        description: "string",
        environmentVariableAliases: [{
            key: "string",
            value: "string",
            id: "string",
        }],
        environmentVariables: [{
            key: "string",
            value: "string",
            id: "string",
        }],
        name: "string",
        secretAliases: [{
            key: "string",
            value: "string",
            id: "string",
        }],
        secrets: [{
            key: "string",
            value: "string",
            id: "string",
        }],
    });
    
    type: qovery:Project
    properties:
        description: string
        environmentVariableAliases:
            - id: string
              key: string
              value: string
        environmentVariables:
            - id: string
              key: string
              value: string
        name: string
        organizationId: string
        secretAliases:
            - id: string
              key: string
              value: string
        secrets:
            - id: string
              key: string
              value: string
    

    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:

    OrganizationId 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 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 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 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 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 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)
    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:
    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

    Id string
    Id of the environment variable.
    Key string
    Key of the environment variable.
    Value string
    Value 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.
    id String
    Id of the environment variable.
    key String
    Key of the environment variable.
    value String
    Value 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.
    id str
    Id of the environment variable.
    key str
    Key of the environment variable.
    value str
    Value 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 string
    Key of the environment variable.
    Value string
    Value 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.
    Id string
    Id of the environment variable.
    key String
    Key of the environment variable.
    value String
    Value 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.
    id string
    Id of the environment variable.
    key str
    Key of the environment variable.
    value str
    Value of the environment variable.
    id str
    Id of the environment variable.
    key String
    Key of the environment variable.
    value String
    Value of the environment variable.
    id String
    Id of the environment variable.

    ProjectEnvironmentVariableAlias, ProjectEnvironmentVariableAliasArgs

    Key string
    Name of the environment variable alias.
    Value string
    Name of the variable to alias.
    Id string
    Id of the environment variable alias.
    Key string
    Name of the environment variable alias.
    Value string
    Name of the variable to alias.
    Id string
    Id of the environment variable alias.
    key String
    Name of the environment variable alias.
    value String
    Name of the variable to alias.
    id String
    Id of the environment variable alias.
    key string
    Name of the environment variable alias.
    value string
    Name of the variable to alias.
    id string
    Id of the environment variable alias.
    key str
    Name of the environment variable alias.
    value str
    Name of the variable to alias.
    id str
    Id of the environment variable alias.
    key String
    Name of the environment variable alias.
    value String
    Name of the variable to alias.
    id String
    Id of the environment variable alias.

    ProjectSecret, ProjectSecretArgs

    Key string
    Key of the secret.
    Value string
    Value of the secret.
    Id string
    Id of the secret.
    Key string
    Key of the secret.
    Value string
    Value of the secret.
    Id string
    Id of the secret.
    key String
    Key of the secret.
    value String
    Value of the secret.
    id String
    Id of the secret.
    key string
    Key of the secret.
    value string
    Value of the secret.
    id string
    Id of the secret.
    key str
    Key of the secret.
    value str
    Value of the secret.
    id str
    Id of the secret.
    key String
    Key of the secret.
    value String
    Value of the secret.
    id String
    Id of the secret.

    ProjectSecretAlias, ProjectSecretAliasArgs

    Key string
    Name of the secret alias.
    Value string
    Name of the secret to alias.
    Id string
    Id of the secret alias.
    Key string
    Name of the secret alias.
    Value string
    Name of the secret to alias.
    Id string
    Id of the secret alias.
    key String
    Name of the secret alias.
    value String
    Name of the secret to alias.
    id String
    Id of the secret alias.
    key string
    Name of the secret alias.
    value string
    Name of the secret to alias.
    id string
    Id of the secret alias.
    key str
    Name of the secret alias.
    value str
    Name of the secret to alias.
    id str
    Id of the secret alias.
    key String
    Name of the secret alias.
    value String
    Name of the secret to alias.
    id String
    Id of the secret alias.

    Import

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

    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.
    qovery logo
    Qovery v0.28.10 published on Friday, Jun 7, 2024 by dirien