Viewing docs for Qovery v0.41.0
published on Saturday, Sep 28, 2024 by dirien
published on Saturday, Sep 28, 2024 by dirien
Viewing docs for Qovery v0.41.0
published on Saturday, Sep 28, 2024 by dirien
published on Saturday, Sep 28, 2024 by dirien
# qovery.Application (Data Source)
Provides a Qovery application resource. This can be used to create and manage Qovery applications.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as qovery from "@pulumi/qovery";
const myApplication = qovery.getApplication({
id: "<application_id>",
});
import pulumi
import pulumi_qovery as qovery
my_application = qovery.get_application(id="<application_id>")
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.LookupApplication(ctx, &qovery.LookupApplicationArgs{
Id: "<application_id>",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Qovery = Pulumi.Qovery;
return await Deployment.RunAsync(() =>
{
var myApplication = Qovery.GetApplication.Invoke(new()
{
Id = "<application_id>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.qovery.QoveryFunctions;
import com.pulumi.qovery.inputs.GetApplicationArgs;
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) {
final var myApplication = QoveryFunctions.getApplication(GetApplicationArgs.builder()
.id("<application_id>")
.build());
}
}
variables:
myApplication:
fn::invoke:
Function: qovery:getApplication
Arguments:
id: <application_id>
Using getApplication
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getApplication(args: GetApplicationArgs, opts?: InvokeOptions): Promise<GetApplicationResult>
function getApplicationOutput(args: GetApplicationOutputArgs, opts?: InvokeOptions): Output<GetApplicationResult>def get_application(advanced_settings_json: Optional[str] = None,
annotations_group_ids: Optional[Sequence[str]] = None,
arguments: Optional[Sequence[str]] = None,
auto_deploy: Optional[bool] = None,
auto_preview: Optional[bool] = None,
buildpack_language: Optional[str] = None,
cpu: Optional[int] = None,
custom_domains: Optional[Sequence[GetApplicationCustomDomain]] = None,
deployment_restrictions: Optional[Sequence[GetApplicationDeploymentRestriction]] = None,
deployment_stage_id: Optional[str] = None,
dockerfile_path: Optional[str] = None,
entrypoint: Optional[str] = None,
environment_variable_aliases: Optional[Sequence[GetApplicationEnvironmentVariableAlias]] = None,
environment_variable_overrides: Optional[Sequence[GetApplicationEnvironmentVariableOverride]] = None,
environment_variables: Optional[Sequence[GetApplicationEnvironmentVariable]] = None,
healthchecks: Optional[GetApplicationHealthchecks] = None,
icon_uri: Optional[str] = None,
id: Optional[str] = None,
labels_group_ids: Optional[Sequence[str]] = None,
max_running_instances: Optional[int] = None,
memory: Optional[int] = None,
min_running_instances: Optional[int] = None,
secret_aliases: Optional[Sequence[GetApplicationSecretAlias]] = None,
secret_overrides: Optional[Sequence[GetApplicationSecretOverride]] = None,
secrets: Optional[Sequence[GetApplicationSecret]] = None,
storages: Optional[Sequence[GetApplicationStorage]] = None,
opts: Optional[InvokeOptions] = None) -> GetApplicationResult
def get_application_output(advanced_settings_json: Optional[pulumi.Input[str]] = None,
annotations_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
arguments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
auto_deploy: Optional[pulumi.Input[bool]] = None,
auto_preview: Optional[pulumi.Input[bool]] = None,
buildpack_language: Optional[pulumi.Input[str]] = None,
cpu: Optional[pulumi.Input[int]] = None,
custom_domains: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationCustomDomainArgs]]]] = None,
deployment_restrictions: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationDeploymentRestrictionArgs]]]] = None,
deployment_stage_id: Optional[pulumi.Input[str]] = None,
dockerfile_path: Optional[pulumi.Input[str]] = None,
entrypoint: Optional[pulumi.Input[str]] = None,
environment_variable_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationEnvironmentVariableAliasArgs]]]] = None,
environment_variable_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationEnvironmentVariableOverrideArgs]]]] = None,
environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationEnvironmentVariableArgs]]]] = None,
healthchecks: Optional[pulumi.Input[GetApplicationHealthchecksArgs]] = None,
icon_uri: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
labels_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
max_running_instances: Optional[pulumi.Input[int]] = None,
memory: Optional[pulumi.Input[int]] = None,
min_running_instances: Optional[pulumi.Input[int]] = None,
secret_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationSecretAliasArgs]]]] = None,
secret_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationSecretOverrideArgs]]]] = None,
secrets: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationSecretArgs]]]] = None,
storages: Optional[pulumi.Input[Sequence[pulumi.Input[GetApplicationStorageArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetApplicationResult]func LookupApplication(ctx *Context, args *LookupApplicationArgs, opts ...InvokeOption) (*LookupApplicationResult, error)
func LookupApplicationOutput(ctx *Context, args *LookupApplicationOutputArgs, opts ...InvokeOption) LookupApplicationResultOutput> Note: This function is named LookupApplication in the Go SDK.
public static class GetApplication
{
public static Task<GetApplicationResult> InvokeAsync(GetApplicationArgs args, InvokeOptions? opts = null)
public static Output<GetApplicationResult> Invoke(GetApplicationInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetApplicationResult> getApplication(GetApplicationArgs args, InvokeOptions options)
public static Output<GetApplicationResult> getApplication(GetApplicationArgs args, InvokeOptions options)
fn::invoke:
function: qovery:index/getApplication:getApplication
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Advanced
Settings stringJson - Annotations
Group List<string>Ids - Arguments List<string>
- Auto
Deploy bool - Auto
Preview bool - Buildpack
Language string - Cpu int
- Custom
Domains List<ediri.Qovery. Inputs. Get Application Custom Domain> - Deployment
Restrictions List<ediri.Qovery. Inputs. Get Application Deployment Restriction> - Deployment
Stage stringId - Dockerfile
Path string - Entrypoint string
- Environment
Variable List<ediri.Aliases Qovery. Inputs. Get Application Environment Variable Alias> - Environment
Variable List<ediri.Overrides Qovery. Inputs. Get Application Environment Variable Override> - Environment
Variables List<ediri.Qovery. Inputs. Get Application Environment Variable> - Healthchecks
ediri.
Qovery. Inputs. Get Application Healthchecks - Icon
Uri string - Labels
Group List<string>Ids - Max
Running intInstances - Memory int
- Min
Running intInstances - Secret
Aliases List<ediri.Qovery. Inputs. Get Application Secret Alias> - Secret
Overrides List<ediri.Qovery. Inputs. Get Application Secret Override> - Secrets
List<ediri.
Qovery. Inputs. Get Application Secret> - Storages
List<ediri.
Qovery. Inputs. Get Application Storage>
- Id string
- Advanced
Settings stringJson - Annotations
Group []stringIds - Arguments []string
- Auto
Deploy bool - Auto
Preview bool - Buildpack
Language string - Cpu int
- Custom
Domains []GetApplication Custom Domain - Deployment
Restrictions []GetApplication Deployment Restriction - Deployment
Stage stringId - Dockerfile
Path string - Entrypoint string
- Environment
Variable []GetAliases Application Environment Variable Alias - Environment
Variable []GetOverrides Application Environment Variable Override - Environment
Variables []GetApplication Environment Variable - Healthchecks
Get
Application Healthchecks - Icon
Uri string - Labels
Group []stringIds - Max
Running intInstances - Memory int
- Min
Running intInstances - Secret
Aliases []GetApplication Secret Alias - Secret
Overrides []GetApplication Secret Override - Secrets
[]Get
Application Secret - Storages
[]Get
Application Storage
- id String
- advanced
Settings StringJson - annotations
Group List<String>Ids - arguments List<String>
- auto
Deploy Boolean - auto
Preview Boolean - buildpack
Language String - cpu Integer
- custom
Domains List<GetApplication Custom Domain> - deployment
Restrictions List<GetApplication Deployment Restriction> - deployment
Stage StringId - dockerfile
Path String - entrypoint String
- environment
Variable List<GetAliases Application Environment Variable Alias> - environment
Variable List<GetOverrides Application Environment Variable Override> - environment
Variables List<GetApplication Environment Variable> - healthchecks
Get
Application Healthchecks - icon
Uri String - labels
Group List<String>Ids - max
Running IntegerInstances - memory Integer
- min
Running IntegerInstances - secret
Aliases List<GetApplication Secret Alias> - secret
Overrides List<GetApplication Secret Override> - secrets
List<Get
Application Secret> - storages
List<Get
Application Storage>
- id string
- advanced
Settings stringJson - annotations
Group string[]Ids - arguments string[]
- auto
Deploy boolean - auto
Preview boolean - buildpack
Language string - cpu number
- custom
Domains GetApplication Custom Domain[] - deployment
Restrictions GetApplication Deployment Restriction[] - deployment
Stage stringId - dockerfile
Path string - entrypoint string
- environment
Variable GetAliases Application Environment Variable Alias[] - environment
Variable GetOverrides Application Environment Variable Override[] - environment
Variables GetApplication Environment Variable[] - healthchecks
Get
Application Healthchecks - icon
Uri string - labels
Group string[]Ids - max
Running numberInstances - memory number
- min
Running numberInstances - secret
Aliases GetApplication Secret Alias[] - secret
Overrides GetApplication Secret Override[] - secrets
Get
Application Secret[] - storages
Get
Application Storage[]
- id str
- advanced_
settings_ strjson - annotations_
group_ Sequence[str]ids - arguments Sequence[str]
- auto_
deploy bool - auto_
preview bool - buildpack_
language str - cpu int
- custom_
domains Sequence[GetApplication Custom Domain] - deployment_
restrictions Sequence[GetApplication Deployment Restriction] - deployment_
stage_ strid - dockerfile_
path str - entrypoint str
- environment_
variable_ Sequence[Getaliases Application Environment Variable Alias] - environment_
variable_ Sequence[Getoverrides Application Environment Variable Override] - environment_
variables Sequence[GetApplication Environment Variable] - healthchecks
Get
Application Healthchecks - icon_
uri str - labels_
group_ Sequence[str]ids - max_
running_ intinstances - memory int
- min_
running_ intinstances - secret_
aliases Sequence[GetApplication Secret Alias] - secret_
overrides Sequence[GetApplication Secret Override] - secrets
Sequence[Get
Application Secret] - storages
Sequence[Get
Application Storage]
- id String
- advanced
Settings StringJson - annotations
Group List<String>Ids - arguments List<String>
- auto
Deploy Boolean - auto
Preview Boolean - buildpack
Language String - cpu Number
- custom
Domains List<Property Map> - deployment
Restrictions List<Property Map> - deployment
Stage StringId - dockerfile
Path String - entrypoint String
- environment
Variable List<Property Map>Aliases - environment
Variable List<Property Map>Overrides - environment
Variables List<Property Map> - healthchecks Property Map
- icon
Uri String - labels
Group List<String>Ids - max
Running NumberInstances - memory Number
- min
Running NumberInstances - secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
- storages List<Property Map>
getApplication Result
The following output properties are available:
- Advanced
Settings stringJson - Arguments List<string>
- Auto
Deploy bool - Auto
Preview bool - Build
Mode string - Buildpack
Language string - Built
In List<ediri.Environment Variables Qovery. Outputs. Get Application Built In Environment Variable> - Cpu int
- Deployment
Stage stringId - Dockerfile
Path string - Entrypoint string
- Environment
Id string - External
Host string - Git
Repository ediri.Qovery. Outputs. Get Application Git Repository - Icon
Uri string - Id string
- Internal
Host string - Max
Running intInstances - Memory int
- Min
Running intInstances - Name string
- Ports
List<ediri.
Qovery. Outputs. Get Application Port> - Storages
List<ediri.
Qovery. Outputs. Get Application Storage> - Annotations
Group List<string>Ids - Custom
Domains List<ediri.Qovery. Outputs. Get Application Custom Domain> - Deployment
Restrictions List<ediri.Qovery. Outputs. Get Application Deployment Restriction> - Environment
Variable List<ediri.Aliases Qovery. Outputs. Get Application Environment Variable Alias> - Environment
Variable List<ediri.Overrides Qovery. Outputs. Get Application Environment Variable Override> - Environment
Variables List<ediri.Qovery. Outputs. Get Application Environment Variable> - Healthchecks
ediri.
Qovery. Outputs. Get Application Healthchecks - Labels
Group List<string>Ids - Secret
Aliases List<ediri.Qovery. Outputs. Get Application Secret Alias> - Secret
Overrides List<ediri.Qovery. Outputs. Get Application Secret Override> - Secrets
List<ediri.
Qovery. Outputs. Get Application Secret>
- Advanced
Settings stringJson - Arguments []string
- Auto
Deploy bool - Auto
Preview bool - Build
Mode string - Buildpack
Language string - Built
In []GetEnvironment Variables Application Built In Environment Variable - Cpu int
- Deployment
Stage stringId - Dockerfile
Path string - Entrypoint string
- Environment
Id string - External
Host string - Git
Repository GetApplication Git Repository - Icon
Uri string - Id string
- Internal
Host string - Max
Running intInstances - Memory int
- Min
Running intInstances - Name string
- Ports
[]Get
Application Port - Storages
[]Get
Application Storage - Annotations
Group []stringIds - Custom
Domains []GetApplication Custom Domain - Deployment
Restrictions []GetApplication Deployment Restriction - Environment
Variable []GetAliases Application Environment Variable Alias - Environment
Variable []GetOverrides Application Environment Variable Override - Environment
Variables []GetApplication Environment Variable - Healthchecks
Get
Application Healthchecks - Labels
Group []stringIds - Secret
Aliases []GetApplication Secret Alias - Secret
Overrides []GetApplication Secret Override - Secrets
[]Get
Application Secret
- advanced
Settings StringJson - arguments List<String>
- auto
Deploy Boolean - auto
Preview Boolean - build
Mode String - buildpack
Language String - built
In List<GetEnvironment Variables Application Built In Environment Variable> - cpu Integer
- deployment
Stage StringId - dockerfile
Path String - entrypoint String
- environment
Id String - external
Host String - git
Repository GetApplication Git Repository - icon
Uri String - id String
- internal
Host String - max
Running IntegerInstances - memory Integer
- min
Running IntegerInstances - name String
- ports
List<Get
Application Port> - storages
List<Get
Application Storage> - annotations
Group List<String>Ids - custom
Domains List<GetApplication Custom Domain> - deployment
Restrictions List<GetApplication Deployment Restriction> - environment
Variable List<GetAliases Application Environment Variable Alias> - environment
Variable List<GetOverrides Application Environment Variable Override> - environment
Variables List<GetApplication Environment Variable> - healthchecks
Get
Application Healthchecks - labels
Group List<String>Ids - secret
Aliases List<GetApplication Secret Alias> - secret
Overrides List<GetApplication Secret Override> - secrets
List<Get
Application Secret>
- advanced
Settings stringJson - arguments string[]
- auto
Deploy boolean - auto
Preview boolean - build
Mode string - buildpack
Language string - built
In GetEnvironment Variables Application Built In Environment Variable[] - cpu number
- deployment
Stage stringId - dockerfile
Path string - entrypoint string
- environment
Id string - external
Host string - git
Repository GetApplication Git Repository - icon
Uri string - id string
- internal
Host string - max
Running numberInstances - memory number
- min
Running numberInstances - name string
- ports
Get
Application Port[] - storages
Get
Application Storage[] - annotations
Group string[]Ids - custom
Domains GetApplication Custom Domain[] - deployment
Restrictions GetApplication Deployment Restriction[] - environment
Variable GetAliases Application Environment Variable Alias[] - environment
Variable GetOverrides Application Environment Variable Override[] - environment
Variables GetApplication Environment Variable[] - healthchecks
Get
Application Healthchecks - labels
Group string[]Ids - secret
Aliases GetApplication Secret Alias[] - secret
Overrides GetApplication Secret Override[] - secrets
Get
Application Secret[]
- advanced_
settings_ strjson - arguments Sequence[str]
- auto_
deploy bool - auto_
preview bool - build_
mode str - buildpack_
language str - built_
in_ Sequence[Getenvironment_ variables Application Built In Environment Variable] - cpu int
- deployment_
stage_ strid - dockerfile_
path str - entrypoint str
- environment_
id str - external_
host str - git_
repository GetApplication Git Repository - icon_
uri str - id str
- internal_
host str - max_
running_ intinstances - memory int
- min_
running_ intinstances - name str
- ports
Sequence[Get
Application Port] - storages
Sequence[Get
Application Storage] - annotations_
group_ Sequence[str]ids - custom_
domains Sequence[GetApplication Custom Domain] - deployment_
restrictions Sequence[GetApplication Deployment Restriction] - environment_
variable_ Sequence[Getaliases Application Environment Variable Alias] - environment_
variable_ Sequence[Getoverrides Application Environment Variable Override] - environment_
variables Sequence[GetApplication Environment Variable] - healthchecks
Get
Application Healthchecks - labels_
group_ Sequence[str]ids - secret_
aliases Sequence[GetApplication Secret Alias] - secret_
overrides Sequence[GetApplication Secret Override] - secrets
Sequence[Get
Application Secret]
- advanced
Settings StringJson - arguments List<String>
- auto
Deploy Boolean - auto
Preview Boolean - build
Mode String - buildpack
Language String - built
In List<Property Map>Environment Variables - cpu Number
- deployment
Stage StringId - dockerfile
Path String - entrypoint String
- environment
Id String - external
Host String - git
Repository Property Map - icon
Uri String - id String
- internal
Host String - max
Running NumberInstances - memory Number
- min
Running NumberInstances - name String
- ports List<Property Map>
- storages List<Property Map>
- annotations
Group List<String>Ids - custom
Domains List<Property Map> - deployment
Restrictions List<Property Map> - environment
Variable List<Property Map>Aliases - environment
Variable List<Property Map>Overrides - environment
Variables List<Property Map> - healthchecks Property Map
- labels
Group List<String>Ids - secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
Supporting Types
GetApplicationBuiltInEnvironmentVariable
- 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.
GetApplicationCustomDomain
- Domain string
- Your custom domain.
- Id string
- Id of the custom domain.
- Status string
- Status of the custom domain.
- Validation
Domain string - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- Generate
Certificate bool - Qovery will generate and manage the certificate for this domain.
- Use
Cdn bool - Indicates if the custom domain is behind a CDN (i.e Cloudflare).
This will condition the way we are checking CNAME before & during a deployment:
- If
truethen we only check the domain points to an IP - If
falsethen we check that the domain resolves to the correct service Load Balancer
- If
- Domain string
- Your custom domain.
- Id string
- Id of the custom domain.
- Status string
- Status of the custom domain.
- Validation
Domain string - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- Generate
Certificate bool - Qovery will generate and manage the certificate for this domain.
- Use
Cdn bool - Indicates if the custom domain is behind a CDN (i.e Cloudflare).
This will condition the way we are checking CNAME before & during a deployment:
- If
truethen we only check the domain points to an IP - If
falsethen we check that the domain resolves to the correct service Load Balancer
- If
- domain String
- Your custom domain.
- id String
- Id of the custom domain.
- status String
- Status of the custom domain.
- validation
Domain String - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- generate
Certificate Boolean - Qovery will generate and manage the certificate for this domain.
- use
Cdn Boolean - Indicates if the custom domain is behind a CDN (i.e Cloudflare).
This will condition the way we are checking CNAME before & during a deployment:
- If
truethen we only check the domain points to an IP - If
falsethen we check that the domain resolves to the correct service Load Balancer
- If
- domain string
- Your custom domain.
- id string
- Id of the custom domain.
- status string
- Status of the custom domain.
- validation
Domain string - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- generate
Certificate boolean - Qovery will generate and manage the certificate for this domain.
- use
Cdn boolean - Indicates if the custom domain is behind a CDN (i.e Cloudflare).
This will condition the way we are checking CNAME before & during a deployment:
- If
truethen we only check the domain points to an IP - If
falsethen we check that the domain resolves to the correct service Load Balancer
- If
- domain str
- Your custom domain.
- id str
- Id of the custom domain.
- status str
- Status of the custom domain.
- validation_
domain str - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- generate_
certificate bool - Qovery will generate and manage the certificate for this domain.
- use_
cdn bool - Indicates if the custom domain is behind a CDN (i.e Cloudflare).
This will condition the way we are checking CNAME before & during a deployment:
- If
truethen we only check the domain points to an IP - If
falsethen we check that the domain resolves to the correct service Load Balancer
- If
- domain String
- Your custom domain.
- id String
- Id of the custom domain.
- status String
- Status of the custom domain.
- validation
Domain String - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- generate
Certificate Boolean - Qovery will generate and manage the certificate for this domain.
- use
Cdn Boolean - Indicates if the custom domain is behind a CDN (i.e Cloudflare).
This will condition the way we are checking CNAME before & during a deployment:
- If
truethen we only check the domain points to an IP - If
falsethen we check that the domain resolves to the correct service Load Balancer
- If
GetApplicationDeploymentRestriction
GetApplicationEnvironmentVariable
- 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.
GetApplicationEnvironmentVariableAlias
- Description string
- Description of the environment variable 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.
- Description string
- Description of the environment variable 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.
- description String
- Description of the environment variable 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.
- description string
- Description of the environment variable 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.
- description str
- Description of the environment variable alias.
- id str
- Id of the environment variable alias.
- key str
- Name of the environment variable alias.
- value str
- Name of the variable to alias.
- description String
- Description of the environment variable 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.
GetApplicationEnvironmentVariableOverride
- Description string
- Description of the environment variable override.
- Id string
- Id of the environment variable override.
- Key string
- Name of the environment variable override.
- Value string
- Value of the environment variable override.
- Description string
- Description of the environment variable override.
- Id string
- Id of the environment variable override.
- Key string
- Name of the environment variable override.
- Value string
- Value of the environment variable override.
- description String
- Description of the environment variable override.
- id String
- Id of the environment variable override.
- key String
- Name of the environment variable override.
- value String
- Value of the environment variable override.
- description string
- Description of the environment variable override.
- id string
- Id of the environment variable override.
- key string
- Name of the environment variable override.
- value string
- Value of the environment variable override.
- description str
- Description of the environment variable override.
- id str
- Id of the environment variable override.
- key str
- Name of the environment variable override.
- value str
- Value of the environment variable override.
- description String
- Description of the environment variable override.
- id String
- Id of the environment variable override.
- key String
- Name of the environment variable override.
- value String
- Value of the environment variable override.
GetApplicationGitRepository
- Branch string
- Branch of the git repository.
- Default:
main or master (depending on repository). - Git
Token stringId - The git token ID to be used
- Root
Path string - Root path of the application.
- Default:
/. - Url string
- URL of the git repository.
- Branch string
- Branch of the git repository.
- Default:
main or master (depending on repository). - Git
Token stringId - The git token ID to be used
- Root
Path string - Root path of the application.
- Default:
/. - Url string
- URL of the git repository.
- branch String
- Branch of the git repository.
- Default:
main or master (depending on repository). - git
Token StringId - The git token ID to be used
- root
Path String - Root path of the application.
- Default:
/. - url String
- URL of the git repository.
- branch string
- Branch of the git repository.
- Default:
main or master (depending on repository). - git
Token stringId - The git token ID to be used
- root
Path string - Root path of the application.
- Default:
/. - url string
- URL of the git repository.
- branch str
- Branch of the git repository.
- Default:
main or master (depending on repository). - git_
token_ strid - The git token ID to be used
- root_
path str - Root path of the application.
- Default:
/. - url str
- URL of the git repository.
- branch String
- Branch of the git repository.
- Default:
main or master (depending on repository). - git
Token StringId - The git token ID to be used
- root
Path String - Root path of the application.
- Default:
/. - url String
- URL of the git repository.
GetApplicationHealthchecks
- Liveness
Probe ediri.Qovery. Inputs. Get Application Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- Readiness
Probe ediri.Qovery. Inputs. Get Application Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- Liveness
Probe GetApplication Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- Readiness
Probe GetApplication Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness
Probe GetApplication Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness
Probe GetApplication Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness
Probe GetApplication Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness
Probe GetApplication Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness_
probe GetApplication Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness_
probe GetApplication Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness
Probe Property Map - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness
Probe Property Map - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
GetApplicationHealthchecksLivenessProbe
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.
Qovery. Inputs. Get Application Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
Get
Application Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Integer - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay IntegerSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Integer - Number of seconds before each execution of the probe
- success
Threshold Integer - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Integer - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Application Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay numberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds number - Number of seconds before each execution of the probe
- success
Threshold number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds number - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Application Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure_
threshold int - Number of time the an ok probe should fail before declaring it as failed
- initial_
delay_ intseconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period_
seconds int - Number of seconds before each execution of the probe
- success_
threshold int - Number of time the probe should success before declaring a failed probe as ok again
- timeout_
seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Application Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay NumberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Number - Number of seconds before each execution of the probe
- success
Threshold Number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Number - Number of seconds within which the check need to respond before declaring it as a failure
- type Property Map
- Kind of check to run for this probe. There can only be one configured at a time
GetApplicationHealthchecksLivenessProbeType
- Exec
ediri.
Qovery. Inputs. Get Application Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
ediri.
Qovery. Inputs. Get Application Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
ediri.
Qovery. Inputs. Get Application Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
ediri.
Qovery. Inputs. Get Application Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- Exec
Get
Application Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
Get
Application Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
Get
Application Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
Get
Application Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Application Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Application Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Application Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Application Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Application Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Application Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Application Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Application Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec_
Get
Application Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Application Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Application Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Application Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec Property Map
- Check that the given command return an exit 0. Binary should be present in the image
- grpc Property Map
- Check that the given port respond to GRPC call
- http Property Map
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp Property Map
- Check that the given port accepting connection
GetApplicationHealthchecksLivenessProbeTypeExec
- Commands List<string>
- The command and its arguments to exec
- Commands []string
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
- commands string[]
- The command and its arguments to exec
- commands Sequence[str]
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
GetApplicationHealthchecksLivenessProbeTypeGrpc
GetApplicationHealthchecksLivenessProbeTypeHttp
GetApplicationHealthchecksLivenessProbeTypeTcp
GetApplicationHealthchecksReadinessProbe
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.
Qovery. Inputs. Get Application Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
Get
Application Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Integer - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay IntegerSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Integer - Number of seconds before each execution of the probe
- success
Threshold Integer - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Integer - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Application Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay numberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds number - Number of seconds before each execution of the probe
- success
Threshold number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds number - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Application Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure_
threshold int - Number of time the an ok probe should fail before declaring it as failed
- initial_
delay_ intseconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period_
seconds int - Number of seconds before each execution of the probe
- success_
threshold int - Number of time the probe should success before declaring a failed probe as ok again
- timeout_
seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Application Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay NumberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Number - Number of seconds before each execution of the probe
- success
Threshold Number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Number - Number of seconds within which the check need to respond before declaring it as a failure
- type Property Map
- Kind of check to run for this probe. There can only be one configured at a time
GetApplicationHealthchecksReadinessProbeType
- Exec
ediri.
Qovery. Inputs. Get Application Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
ediri.
Qovery. Inputs. Get Application Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
ediri.
Qovery. Inputs. Get Application Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
ediri.
Qovery. Inputs. Get Application Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- Exec
Get
Application Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
Get
Application Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
Get
Application Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
Get
Application Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Application Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Application Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Application Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Application Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Application Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Application Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Application Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Application Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec_
Get
Application Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Application Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Application Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Application Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec Property Map
- Check that the given command return an exit 0. Binary should be present in the image
- grpc Property Map
- Check that the given port respond to GRPC call
- http Property Map
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp Property Map
- Check that the given port accepting connection
GetApplicationHealthchecksReadinessProbeTypeExec
- Commands List<string>
- The command and its arguments to exec
- Commands []string
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
- commands string[]
- The command and its arguments to exec
- commands Sequence[str]
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
GetApplicationHealthchecksReadinessProbeTypeGrpc
GetApplicationHealthchecksReadinessProbeTypeHttp
GetApplicationHealthchecksReadinessProbeTypeTcp
GetApplicationPort
- External
Port int - External port of the application.
- Required if:
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - Id string
- Id of the port.
- Internal
Port int - Internal port of the application.
- Must be:
>= 1and<= 65535. - Is
Default bool - If this port will be used for the root domain
- Name string
- Name of the port.
- Protocol string
- Protocol used for the port of the application.
- Can be:
GRPC,HTTP,TCP,UDP. - Default:HTTP. - Publicly
Accessible bool - Specify if the port is exposed to the world or not for this application.
- External
Port int - External port of the application.
- Required if:
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - Id string
- Id of the port.
- Internal
Port int - Internal port of the application.
- Must be:
>= 1and<= 65535. - Is
Default bool - If this port will be used for the root domain
- Name string
- Name of the port.
- Protocol string
- Protocol used for the port of the application.
- Can be:
GRPC,HTTP,TCP,UDP. - Default:HTTP. - Publicly
Accessible bool - Specify if the port is exposed to the world or not for this application.
- external
Port Integer - External port of the application.
- Required if:
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - id String
- Id of the port.
- internal
Port Integer - Internal port of the application.
- Must be:
>= 1and<= 65535. - is
Default Boolean - If this port will be used for the root domain
- name String
- Name of the port.
- protocol String
- Protocol used for the port of the application.
- Can be:
GRPC,HTTP,TCP,UDP. - Default:HTTP. - publicly
Accessible Boolean - Specify if the port is exposed to the world or not for this application.
- external
Port number - External port of the application.
- Required if:
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - id string
- Id of the port.
- internal
Port number - Internal port of the application.
- Must be:
>= 1and<= 65535. - is
Default boolean - If this port will be used for the root domain
- name string
- Name of the port.
- protocol string
- Protocol used for the port of the application.
- Can be:
GRPC,HTTP,TCP,UDP. - Default:HTTP. - publicly
Accessible boolean - Specify if the port is exposed to the world or not for this application.
- external_
port int - External port of the application.
- Required if:
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - id str
- Id of the port.
- internal_
port int - Internal port of the application.
- Must be:
>= 1and<= 65535. - is_
default bool - If this port will be used for the root domain
- name str
- Name of the port.
- protocol str
- Protocol used for the port of the application.
- Can be:
GRPC,HTTP,TCP,UDP. - Default:HTTP. - publicly_
accessible bool - Specify if the port is exposed to the world or not for this application.
- external
Port Number - External port of the application.
- Required if:
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - id String
- Id of the port.
- internal
Port Number - Internal port of the application.
- Must be:
>= 1and<= 65535. - is
Default Boolean - If this port will be used for the root domain
- name String
- Name of the port.
- protocol String
- Protocol used for the port of the application.
- Can be:
GRPC,HTTP,TCP,UDP. - Default:HTTP. - publicly
Accessible Boolean - Specify if the port is exposed to the world or not for this application.
GetApplicationSecret
- Description string
- Description of the secret.
- Id string
- Id of the secret.
- Key string
- Key of the secret.
- Value string
- Value of the secret.
- Description string
- Description of the secret.
- Id string
- Id of the secret.
- Key string
- Key of the secret.
- Value string
- Value of the secret.
- description String
- Description of the secret.
- id String
- Id of the secret.
- key String
- Key of the secret.
- value String
- Value of the secret.
- description string
- Description of the secret.
- id string
- Id of the secret.
- key string
- Key of the secret.
- value string
- Value of the secret.
- description str
- Description of the secret.
- id str
- Id of the secret.
- key str
- Key of the secret.
- value str
- Value of the secret.
- description String
- Description of the secret.
- id String
- Id of the secret.
- key String
- Key of the secret.
- value String
- Value of the secret.
GetApplicationSecretAlias
- Description string
- Description of the secret alias.
- Id string
- Id of the secret alias.
- Key string
- Name of the secret alias.
- Value string
- Name of the secret to alias.
- Description string
- Description of the secret alias.
- Id string
- Id of the secret alias.
- Key string
- Name of the secret alias.
- Value string
- Name of the secret to alias.
- description String
- Description of the secret alias.
- id String
- Id of the secret alias.
- key String
- Name of the secret alias.
- value String
- Name of the secret to alias.
- description string
- Description of the secret alias.
- id string
- Id of the secret alias.
- key string
- Name of the secret alias.
- value string
- Name of the secret to alias.
- description str
- Description of the secret alias.
- id str
- Id of the secret alias.
- key str
- Name of the secret alias.
- value str
- Name of the secret to alias.
- description String
- Description of the secret alias.
- id String
- Id of the secret alias.
- key String
- Name of the secret alias.
- value String
- Name of the secret to alias.
GetApplicationSecretOverride
- Description string
- Description of the secret override.
- Id string
- Id of the secret override.
- Key string
- Name of the secret override.
- Value string
- Value of the secret override.
- Description string
- Description of the secret override.
- Id string
- Id of the secret override.
- Key string
- Name of the secret override.
- Value string
- Value of the secret override.
- description String
- Description of the secret override.
- id String
- Id of the secret override.
- key String
- Name of the secret override.
- value String
- Value of the secret override.
- description string
- Description of the secret override.
- id string
- Id of the secret override.
- key string
- Name of the secret override.
- value string
- Value of the secret override.
- description str
- Description of the secret override.
- id str
- Id of the secret override.
- key str
- Name of the secret override.
- value str
- Value of the secret override.
- description String
- Description of the secret override.
- id String
- Id of the secret override.
- key String
- Name of the secret override.
- value String
- Value of the secret override.
GetApplicationStorage
- Id string
- Id of the storage.
- Mount
Point string - Mount point of the storage for the application.
- Size int
- Size of the storage for the application in GB [1024MB = 1GB].
- Must be:
>= 1. - Type string
- Type of the storage for the application.
- Can be:
FAST_SSD.
- Id string
- Id of the storage.
- Mount
Point string - Mount point of the storage for the application.
- Size int
- Size of the storage for the application in GB [1024MB = 1GB].
- Must be:
>= 1. - Type string
- Type of the storage for the application.
- Can be:
FAST_SSD.
- id String
- Id of the storage.
- mount
Point String - Mount point of the storage for the application.
- size Integer
- Size of the storage for the application in GB [1024MB = 1GB].
- Must be:
>= 1. - type String
- Type of the storage for the application.
- Can be:
FAST_SSD.
- id string
- Id of the storage.
- mount
Point string - Mount point of the storage for the application.
- size number
- Size of the storage for the application in GB [1024MB = 1GB].
- Must be:
>= 1. - type string
- Type of the storage for the application.
- Can be:
FAST_SSD.
- id str
- Id of the storage.
- mount_
point str - Mount point of the storage for the application.
- size int
- Size of the storage for the application in GB [1024MB = 1GB].
- Must be:
>= 1. - type str
- Type of the storage for the application.
- Can be:
FAST_SSD.
- id String
- Id of the storage.
- mount
Point String - Mount point of the storage for the application.
- size Number
- Size of the storage for the application in GB [1024MB = 1GB].
- Must be:
>= 1. - type String
- Type of the storage for the application.
- Can be:
FAST_SSD.
Package Details
- Repository
- qovery dirien/pulumi-qovery
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
qoveryTerraform Provider.
Viewing docs for Qovery v0.41.0
published on Saturday, Sep 28, 2024 by dirien
published on Saturday, Sep 28, 2024 by dirien
