Qovery v0.41.0 published on Saturday, Sep 28, 2024 by dirien
qovery.getContainer
Explore with Pulumi AI
# qovery.Container (Data Source)
Provides a Qovery container resource. This can be used to create and manage Qovery container registry.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as qovery from "@pulumi/qovery";
const myContainer = qovery.getContainer({
    id: "<container_id>",
});
import pulumi
import pulumi_qovery as qovery
my_container = qovery.get_container(id="<container_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.LookupContainer(ctx, &qovery.LookupContainerArgs{
			Id: "<container_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 myContainer = Qovery.GetContainer.Invoke(new()
    {
        Id = "<container_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.GetContainerArgs;
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 myContainer = QoveryFunctions.getContainer(GetContainerArgs.builder()
            .id("<container_id>")
            .build());
    }
}
variables:
  myContainer:
    fn::invoke:
      Function: qovery:getContainer
      Arguments:
        id: <container_id>
Using getContainer
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 getContainer(args: GetContainerArgs, opts?: InvokeOptions): Promise<GetContainerResult>
function getContainerOutput(args: GetContainerOutputArgs, opts?: InvokeOptions): Output<GetContainerResult>def get_container(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,
                  cpu: Optional[int] = None,
                  custom_domains: Optional[Sequence[GetContainerCustomDomain]] = None,
                  deployment_stage_id: Optional[str] = None,
                  entrypoint: Optional[str] = None,
                  environment_variable_aliases: Optional[Sequence[GetContainerEnvironmentVariableAlias]] = None,
                  environment_variable_overrides: Optional[Sequence[GetContainerEnvironmentVariableOverride]] = None,
                  environment_variables: Optional[Sequence[GetContainerEnvironmentVariable]] = None,
                  healthchecks: Optional[GetContainerHealthchecks] = 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,
                  ports: Optional[Sequence[GetContainerPort]] = None,
                  secret_aliases: Optional[Sequence[GetContainerSecretAlias]] = None,
                  secret_overrides: Optional[Sequence[GetContainerSecretOverride]] = None,
                  secrets: Optional[Sequence[GetContainerSecret]] = None,
                  storages: Optional[Sequence[GetContainerStorage]] = None,
                  opts: Optional[InvokeOptions] = None) -> GetContainerResult
def get_container_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,
                  cpu: Optional[pulumi.Input[int]] = None,
                  custom_domains: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerCustomDomainArgs]]]] = None,
                  deployment_stage_id: Optional[pulumi.Input[str]] = None,
                  entrypoint: Optional[pulumi.Input[str]] = None,
                  environment_variable_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableAliasArgs]]]] = None,
                  environment_variable_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableOverrideArgs]]]] = None,
                  environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableArgs]]]] = None,
                  healthchecks: Optional[pulumi.Input[GetContainerHealthchecksArgs]] = 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,
                  ports: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerPortArgs]]]] = None,
                  secret_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretAliasArgs]]]] = None,
                  secret_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretOverrideArgs]]]] = None,
                  secrets: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretArgs]]]] = None,
                  storages: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerStorageArgs]]]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetContainerResult]func LookupContainer(ctx *Context, args *LookupContainerArgs, opts ...InvokeOption) (*LookupContainerResult, error)
func LookupContainerOutput(ctx *Context, args *LookupContainerOutputArgs, opts ...InvokeOption) LookupContainerResultOutput> Note: This function is named LookupContainer in the Go SDK.
public static class GetContainer 
{
    public static Task<GetContainerResult> InvokeAsync(GetContainerArgs args, InvokeOptions? opts = null)
    public static Output<GetContainerResult> Invoke(GetContainerInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetContainerResult> getContainer(GetContainerArgs args, InvokeOptions options)
public static Output<GetContainerResult> getContainer(GetContainerArgs args, InvokeOptions options)
fn::invoke:
  function: qovery:index/getContainer:getContainer
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Id string
- AdvancedSettings stringJson 
- AnnotationsGroup List<string>Ids 
- Arguments List<string>
- AutoDeploy bool
- AutoPreview bool
- Cpu int
- CustomDomains List<ediri.Qovery. Inputs. Get Container Custom Domain> 
- DeploymentStage stringId 
- Entrypoint string
- EnvironmentVariable List<ediri.Aliases Qovery. Inputs. Get Container Environment Variable Alias> 
- EnvironmentVariable List<ediri.Overrides Qovery. Inputs. Get Container Environment Variable Override> 
- EnvironmentVariables List<ediri.Qovery. Inputs. Get Container Environment Variable> 
- Healthchecks
ediri.Qovery. Inputs. Get Container Healthchecks 
- IconUri string
- LabelsGroup List<string>Ids 
- MaxRunning intInstances 
- Memory int
- MinRunning intInstances 
- Ports
List<ediri.Qovery. Inputs. Get Container Port> 
- SecretAliases List<ediri.Qovery. Inputs. Get Container Secret Alias> 
- SecretOverrides List<ediri.Qovery. Inputs. Get Container Secret Override> 
- Secrets
List<ediri.Qovery. Inputs. Get Container Secret> 
- Storages
List<ediri.Qovery. Inputs. Get Container Storage> 
- Id string
- AdvancedSettings stringJson 
- AnnotationsGroup []stringIds 
- Arguments []string
- AutoDeploy bool
- AutoPreview bool
- Cpu int
- CustomDomains []GetContainer Custom Domain 
- DeploymentStage stringId 
- Entrypoint string
- EnvironmentVariable []GetAliases Container Environment Variable Alias 
- EnvironmentVariable []GetOverrides Container Environment Variable Override 
- EnvironmentVariables []GetContainer Environment Variable 
- Healthchecks
GetContainer Healthchecks 
- IconUri string
- LabelsGroup []stringIds 
- MaxRunning intInstances 
- Memory int
- MinRunning intInstances 
- Ports
[]GetContainer Port 
- SecretAliases []GetContainer Secret Alias 
- SecretOverrides []GetContainer Secret Override 
- Secrets
[]GetContainer Secret 
- Storages
[]GetContainer Storage 
- id String
- advancedSettings StringJson 
- annotationsGroup List<String>Ids 
- arguments List<String>
- autoDeploy Boolean
- autoPreview Boolean
- cpu Integer
- customDomains List<GetContainer Custom Domain> 
- deploymentStage StringId 
- entrypoint String
- environmentVariable List<GetAliases Container Environment Variable Alias> 
- environmentVariable List<GetOverrides Container Environment Variable Override> 
- environmentVariables List<GetContainer Environment Variable> 
- healthchecks
GetContainer Healthchecks 
- iconUri String
- labelsGroup List<String>Ids 
- maxRunning IntegerInstances 
- memory Integer
- minRunning IntegerInstances 
- ports
List<GetContainer Port> 
- secretAliases List<GetContainer Secret Alias> 
- secretOverrides List<GetContainer Secret Override> 
- secrets
List<GetContainer Secret> 
- storages
List<GetContainer Storage> 
- id string
- advancedSettings stringJson 
- annotationsGroup string[]Ids 
- arguments string[]
- autoDeploy boolean
- autoPreview boolean
- cpu number
- customDomains GetContainer Custom Domain[] 
- deploymentStage stringId 
- entrypoint string
- environmentVariable GetAliases Container Environment Variable Alias[] 
- environmentVariable GetOverrides Container Environment Variable Override[] 
- environmentVariables GetContainer Environment Variable[] 
- healthchecks
GetContainer Healthchecks 
- iconUri string
- labelsGroup string[]Ids 
- maxRunning numberInstances 
- memory number
- minRunning numberInstances 
- ports
GetContainer Port[] 
- secretAliases GetContainer Secret Alias[] 
- secretOverrides GetContainer Secret Override[] 
- secrets
GetContainer Secret[] 
- storages
GetContainer Storage[] 
- id str
- advanced_settings_ strjson 
- annotations_group_ Sequence[str]ids 
- arguments Sequence[str]
- auto_deploy bool
- auto_preview bool
- cpu int
- custom_domains Sequence[GetContainer Custom Domain] 
- deployment_stage_ strid 
- entrypoint str
- environment_variable_ Sequence[Getaliases Container Environment Variable Alias] 
- environment_variable_ Sequence[Getoverrides Container Environment Variable Override] 
- environment_variables Sequence[GetContainer Environment Variable] 
- healthchecks
GetContainer Healthchecks 
- icon_uri str
- labels_group_ Sequence[str]ids 
- max_running_ intinstances 
- memory int
- min_running_ intinstances 
- ports
Sequence[GetContainer Port] 
- secret_aliases Sequence[GetContainer Secret Alias] 
- secret_overrides Sequence[GetContainer Secret Override] 
- secrets
Sequence[GetContainer Secret] 
- storages
Sequence[GetContainer Storage] 
- id String
- advancedSettings StringJson 
- annotationsGroup List<String>Ids 
- arguments List<String>
- autoDeploy Boolean
- autoPreview Boolean
- cpu Number
- customDomains List<Property Map>
- deploymentStage StringId 
- entrypoint String
- environmentVariable List<Property Map>Aliases 
- environmentVariable List<Property Map>Overrides 
- environmentVariables List<Property Map>
- healthchecks Property Map
- iconUri String
- labelsGroup List<String>Ids 
- maxRunning NumberInstances 
- memory Number
- minRunning NumberInstances 
- ports List<Property Map>
- secretAliases List<Property Map>
- secretOverrides List<Property Map>
- secrets List<Property Map>
- storages List<Property Map>
getContainer Result
The following output properties are available:
- AdvancedSettings stringJson 
- AutoDeploy bool
- AutoPreview bool
- BuiltIn List<ediri.Environment Variables Qovery. Outputs. Get Container Built In Environment Variable> 
- Cpu int
- DeploymentStage stringId 
- Entrypoint string
- EnvironmentId string
- ExternalHost string
- IconUri string
- Id string
- ImageName string
- InternalHost string
- MaxRunning intInstances 
- Memory int
- MinRunning intInstances 
- Name string
- Ports
List<ediri.Qovery. Outputs. Get Container Port> 
- RegistryId string
- Storages
List<ediri.Qovery. Outputs. Get Container Storage> 
- Tag string
- AnnotationsGroup List<string>Ids 
- Arguments List<string>
- CustomDomains List<ediri.Qovery. Outputs. Get Container Custom Domain> 
- EnvironmentVariable List<ediri.Aliases Qovery. Outputs. Get Container Environment Variable Alias> 
- EnvironmentVariable List<ediri.Overrides Qovery. Outputs. Get Container Environment Variable Override> 
- EnvironmentVariables List<ediri.Qovery. Outputs. Get Container Environment Variable> 
- Healthchecks
ediri.Qovery. Outputs. Get Container Healthchecks 
- LabelsGroup List<string>Ids 
- SecretAliases List<ediri.Qovery. Outputs. Get Container Secret Alias> 
- SecretOverrides List<ediri.Qovery. Outputs. Get Container Secret Override> 
- Secrets
List<ediri.Qovery. Outputs. Get Container Secret> 
- AdvancedSettings stringJson 
- AutoDeploy bool
- AutoPreview bool
- BuiltIn []GetEnvironment Variables Container Built In Environment Variable 
- Cpu int
- DeploymentStage stringId 
- Entrypoint string
- EnvironmentId string
- ExternalHost string
- IconUri string
- Id string
- ImageName string
- InternalHost string
- MaxRunning intInstances 
- Memory int
- MinRunning intInstances 
- Name string
- Ports
[]GetContainer Port 
- RegistryId string
- Storages
[]GetContainer Storage 
- Tag string
- AnnotationsGroup []stringIds 
- Arguments []string
- CustomDomains []GetContainer Custom Domain 
- EnvironmentVariable []GetAliases Container Environment Variable Alias 
- EnvironmentVariable []GetOverrides Container Environment Variable Override 
- EnvironmentVariables []GetContainer Environment Variable 
- Healthchecks
GetContainer Healthchecks 
- LabelsGroup []stringIds 
- SecretAliases []GetContainer Secret Alias 
- SecretOverrides []GetContainer Secret Override 
- Secrets
[]GetContainer Secret 
- advancedSettings StringJson 
- autoDeploy Boolean
- autoPreview Boolean
- builtIn List<GetEnvironment Variables Container Built In Environment Variable> 
- cpu Integer
- deploymentStage StringId 
- entrypoint String
- environmentId String
- externalHost String
- iconUri String
- id String
- imageName String
- internalHost String
- maxRunning IntegerInstances 
- memory Integer
- minRunning IntegerInstances 
- name String
- ports
List<GetContainer Port> 
- registryId String
- storages
List<GetContainer Storage> 
- tag String
- annotationsGroup List<String>Ids 
- arguments List<String>
- customDomains List<GetContainer Custom Domain> 
- environmentVariable List<GetAliases Container Environment Variable Alias> 
- environmentVariable List<GetOverrides Container Environment Variable Override> 
- environmentVariables List<GetContainer Environment Variable> 
- healthchecks
GetContainer Healthchecks 
- labelsGroup List<String>Ids 
- secretAliases List<GetContainer Secret Alias> 
- secretOverrides List<GetContainer Secret Override> 
- secrets
List<GetContainer Secret> 
- advancedSettings stringJson 
- autoDeploy boolean
- autoPreview boolean
- builtIn GetEnvironment Variables Container Built In Environment Variable[] 
- cpu number
- deploymentStage stringId 
- entrypoint string
- environmentId string
- externalHost string
- iconUri string
- id string
- imageName string
- internalHost string
- maxRunning numberInstances 
- memory number
- minRunning numberInstances 
- name string
- ports
GetContainer Port[] 
- registryId string
- storages
GetContainer Storage[] 
- tag string
- annotationsGroup string[]Ids 
- arguments string[]
- customDomains GetContainer Custom Domain[] 
- environmentVariable GetAliases Container Environment Variable Alias[] 
- environmentVariable GetOverrides Container Environment Variable Override[] 
- environmentVariables GetContainer Environment Variable[] 
- healthchecks
GetContainer Healthchecks 
- labelsGroup string[]Ids 
- secretAliases GetContainer Secret Alias[] 
- secretOverrides GetContainer Secret Override[] 
- secrets
GetContainer Secret[] 
- advanced_settings_ strjson 
- auto_deploy bool
- auto_preview bool
- built_in_ Sequence[Getenvironment_ variables Container Built In Environment Variable] 
- cpu int
- deployment_stage_ strid 
- entrypoint str
- environment_id str
- external_host str
- icon_uri str
- id str
- image_name str
- internal_host str
- max_running_ intinstances 
- memory int
- min_running_ intinstances 
- name str
- ports
Sequence[GetContainer Port] 
- registry_id str
- storages
Sequence[GetContainer Storage] 
- tag str
- annotations_group_ Sequence[str]ids 
- arguments Sequence[str]
- custom_domains Sequence[GetContainer Custom Domain] 
- environment_variable_ Sequence[Getaliases Container Environment Variable Alias] 
- environment_variable_ Sequence[Getoverrides Container Environment Variable Override] 
- environment_variables Sequence[GetContainer Environment Variable] 
- healthchecks
GetContainer Healthchecks 
- labels_group_ Sequence[str]ids 
- secret_aliases Sequence[GetContainer Secret Alias] 
- secret_overrides Sequence[GetContainer Secret Override] 
- secrets
Sequence[GetContainer Secret] 
- advancedSettings StringJson 
- autoDeploy Boolean
- autoPreview Boolean
- builtIn List<Property Map>Environment Variables 
- cpu Number
- deploymentStage StringId 
- entrypoint String
- environmentId String
- externalHost String
- iconUri String
- id String
- imageName String
- internalHost String
- maxRunning NumberInstances 
- memory Number
- minRunning NumberInstances 
- name String
- ports List<Property Map>
- registryId String
- storages List<Property Map>
- tag String
- annotationsGroup List<String>Ids 
- arguments List<String>
- customDomains List<Property Map>
- environmentVariable List<Property Map>Aliases 
- environmentVariable List<Property Map>Overrides 
- environmentVariables List<Property Map>
- healthchecks Property Map
- labelsGroup List<String>Ids 
- secretAliases List<Property Map>
- secretOverrides List<Property Map>
- secrets List<Property Map>
Supporting Types
GetContainerBuiltInEnvironmentVariable     
- 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.
GetContainerCustomDomain   
- Domain string
- Your custom domain.
- Id string
- Id of the custom domain.
- Status string
- Status of the custom domain.
- ValidationDomain string
- URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- GenerateCertificate bool
- Qovery will generate and manage the certificate for this domain.
- UseCdn 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.
- ValidationDomain string
- URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- GenerateCertificate bool
- Qovery will generate and manage the certificate for this domain.
- UseCdn 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.
- validationDomain String
- URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- generateCertificate Boolean
- Qovery will generate and manage the certificate for this domain.
- useCdn 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.
- validationDomain string
- URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- generateCertificate boolean
- Qovery will generate and manage the certificate for this domain.
- useCdn 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.
- validationDomain String
- URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- generateCertificate Boolean
- Qovery will generate and manage the certificate for this domain.
- useCdn 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 
GetContainerEnvironmentVariable   
- 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.
GetContainerEnvironmentVariableAlias    
- 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.
GetContainerEnvironmentVariableOverride    
- 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.
GetContainerHealthchecks  
- LivenessProbe ediri.Qovery. Inputs. Get Container 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.
- ReadinessProbe ediri.Qovery. Inputs. Get Container 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.
- LivenessProbe GetContainer 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.
- ReadinessProbe GetContainer 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.
- livenessProbe GetContainer 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.
- readinessProbe GetContainer 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.
- livenessProbe GetContainer 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.
- readinessProbe GetContainer 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 GetContainer 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 GetContainer 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.
- livenessProbe 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.
- readinessProbe 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.
GetContainerHealthchecksLivenessProbe    
- FailureThreshold int
- Number of time the an ok probe should fail before declaring it as failed
- InitialDelay intSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- PeriodSeconds int
- Number of seconds before each execution of the probe
- SuccessThreshold int
- Number of time the probe should success before declaring a failed probe as ok again
- TimeoutSeconds int
- Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.Qovery. Inputs. Get Container Healthchecks Liveness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- FailureThreshold int
- Number of time the an ok probe should fail before declaring it as failed
- InitialDelay intSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- PeriodSeconds int
- Number of seconds before each execution of the probe
- SuccessThreshold int
- Number of time the probe should success before declaring a failed probe as ok again
- TimeoutSeconds int
- Number of seconds within which the check need to respond before declaring it as a failure
- Type
GetContainer Healthchecks Liveness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- failureThreshold Integer
- Number of time the an ok probe should fail before declaring it as failed
- initialDelay IntegerSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- periodSeconds Integer
- Number of seconds before each execution of the probe
- successThreshold Integer
- Number of time the probe should success before declaring a failed probe as ok again
- timeoutSeconds Integer
- Number of seconds within which the check need to respond before declaring it as a failure
- type
GetContainer Healthchecks Liveness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- failureThreshold number
- Number of time the an ok probe should fail before declaring it as failed
- initialDelay numberSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- periodSeconds number
- Number of seconds before each execution of the probe
- successThreshold number
- Number of time the probe should success before declaring a failed probe as ok again
- timeoutSeconds number
- Number of seconds within which the check need to respond before declaring it as a failure
- type
GetContainer 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
GetContainer Healthchecks Liveness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- failureThreshold Number
- Number of time the an ok probe should fail before declaring it as failed
- initialDelay NumberSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- periodSeconds Number
- Number of seconds before each execution of the probe
- successThreshold Number
- Number of time the probe should success before declaring a failed probe as ok again
- timeoutSeconds 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
GetContainerHealthchecksLivenessProbeType     
- Exec
ediri.Qovery. Inputs. Get Container 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 Container Healthchecks Liveness Probe Type Grpc 
- Check that the given port respond to GRPC call
- Http
ediri.Qovery. Inputs. Get Container 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 Container Healthchecks Liveness Probe Type Tcp 
- Check that the given port accepting connection
- Exec
GetContainer Healthchecks Liveness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- Grpc
GetContainer Healthchecks Liveness Probe Type Grpc 
- Check that the given port respond to GRPC call
- Http
GetContainer Healthchecks Liveness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
GetContainer Healthchecks Liveness Probe Type Tcp 
- Check that the given port accepting connection
- exec
GetContainer Healthchecks Liveness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- grpc
GetContainer Healthchecks Liveness Probe Type Grpc 
- Check that the given port respond to GRPC call
- http
GetContainer Healthchecks Liveness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
GetContainer Healthchecks Liveness Probe Type Tcp 
- Check that the given port accepting connection
- exec
GetContainer Healthchecks Liveness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- grpc
GetContainer Healthchecks Liveness Probe Type Grpc 
- Check that the given port respond to GRPC call
- http
GetContainer Healthchecks Liveness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
GetContainer Healthchecks Liveness Probe Type Tcp 
- Check that the given port accepting connection
- exec_
GetContainer Healthchecks Liveness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- grpc
GetContainer Healthchecks Liveness Probe Type Grpc 
- Check that the given port respond to GRPC call
- http
GetContainer Healthchecks Liveness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
GetContainer 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
GetContainerHealthchecksLivenessProbeTypeExec      
- 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
GetContainerHealthchecksLivenessProbeTypeGrpc      
GetContainerHealthchecksLivenessProbeTypeHttp      
GetContainerHealthchecksLivenessProbeTypeTcp      
GetContainerHealthchecksReadinessProbe    
- FailureThreshold int
- Number of time the an ok probe should fail before declaring it as failed
- InitialDelay intSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- PeriodSeconds int
- Number of seconds before each execution of the probe
- SuccessThreshold int
- Number of time the probe should success before declaring a failed probe as ok again
- TimeoutSeconds int
- Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.Qovery. Inputs. Get Container Healthchecks Readiness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- FailureThreshold int
- Number of time the an ok probe should fail before declaring it as failed
- InitialDelay intSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- PeriodSeconds int
- Number of seconds before each execution of the probe
- SuccessThreshold int
- Number of time the probe should success before declaring a failed probe as ok again
- TimeoutSeconds int
- Number of seconds within which the check need to respond before declaring it as a failure
- Type
GetContainer Healthchecks Readiness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- failureThreshold Integer
- Number of time the an ok probe should fail before declaring it as failed
- initialDelay IntegerSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- periodSeconds Integer
- Number of seconds before each execution of the probe
- successThreshold Integer
- Number of time the probe should success before declaring a failed probe as ok again
- timeoutSeconds Integer
- Number of seconds within which the check need to respond before declaring it as a failure
- type
GetContainer Healthchecks Readiness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- failureThreshold number
- Number of time the an ok probe should fail before declaring it as failed
- initialDelay numberSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- periodSeconds number
- Number of seconds before each execution of the probe
- successThreshold number
- Number of time the probe should success before declaring a failed probe as ok again
- timeoutSeconds number
- Number of seconds within which the check need to respond before declaring it as a failure
- type
GetContainer 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
GetContainer Healthchecks Readiness Probe Type 
- Kind of check to run for this probe. There can only be one configured at a time
- failureThreshold Number
- Number of time the an ok probe should fail before declaring it as failed
- initialDelay NumberSeconds 
- Number of seconds to wait before the first execution of the probe to be trigerred
- periodSeconds Number
- Number of seconds before each execution of the probe
- successThreshold Number
- Number of time the probe should success before declaring a failed probe as ok again
- timeoutSeconds 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
GetContainerHealthchecksReadinessProbeType     
- Exec
ediri.Qovery. Inputs. Get Container 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 Container Healthchecks Readiness Probe Type Grpc 
- Check that the given port respond to GRPC call
- Http
ediri.Qovery. Inputs. Get Container 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 Container Healthchecks Readiness Probe Type Tcp 
- Check that the given port accepting connection
- Exec
GetContainer Healthchecks Readiness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- Grpc
GetContainer Healthchecks Readiness Probe Type Grpc 
- Check that the given port respond to GRPC call
- Http
GetContainer Healthchecks Readiness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
GetContainer Healthchecks Readiness Probe Type Tcp 
- Check that the given port accepting connection
- exec
GetContainer Healthchecks Readiness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- grpc
GetContainer Healthchecks Readiness Probe Type Grpc 
- Check that the given port respond to GRPC call
- http
GetContainer Healthchecks Readiness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
GetContainer Healthchecks Readiness Probe Type Tcp 
- Check that the given port accepting connection
- exec
GetContainer Healthchecks Readiness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- grpc
GetContainer Healthchecks Readiness Probe Type Grpc 
- Check that the given port respond to GRPC call
- http
GetContainer Healthchecks Readiness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
GetContainer Healthchecks Readiness Probe Type Tcp 
- Check that the given port accepting connection
- exec_
GetContainer Healthchecks Readiness Probe Type Exec 
- Check that the given command return an exit 0. Binary should be present in the image
- grpc
GetContainer Healthchecks Readiness Probe Type Grpc 
- Check that the given port respond to GRPC call
- http
GetContainer Healthchecks Readiness Probe Type Http 
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
GetContainer 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
GetContainerHealthchecksReadinessProbeTypeExec      
- 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
GetContainerHealthchecksReadinessProbeTypeGrpc      
GetContainerHealthchecksReadinessProbeTypeHttp      
GetContainerHealthchecksReadinessProbeTypeTcp      
GetContainerPort  
- ExternalPort int
- External port of the container.
- Required if: ports.publicly_accessible=true. - Must be:>= 1and<= 65535.
- Id string
- Id of the port.
- InternalPort int
- Internal port of the container.
- Must be: >= 1and<= 65535.
- IsDefault 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 container.
- Can be: GRPC,HTTP,TCP,UDP. - Default:HTTP.
- PubliclyAccessible bool
- Specify if the port is exposed to the world or not for this container.
- ExternalPort int
- External port of the container.
- Required if: ports.publicly_accessible=true. - Must be:>= 1and<= 65535.
- Id string
- Id of the port.
- InternalPort int
- Internal port of the container.
- Must be: >= 1and<= 65535.
- IsDefault 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 container.
- Can be: GRPC,HTTP,TCP,UDP. - Default:HTTP.
- PubliclyAccessible bool
- Specify if the port is exposed to the world or not for this container.
- externalPort Integer
- External port of the container.
- Required if: ports.publicly_accessible=true. - Must be:>= 1and<= 65535.
- id String
- Id of the port.
- internalPort Integer
- Internal port of the container.
- Must be: >= 1and<= 65535.
- isDefault 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 container.
- Can be: GRPC,HTTP,TCP,UDP. - Default:HTTP.
- publiclyAccessible Boolean
- Specify if the port is exposed to the world or not for this container.
- externalPort number
- External port of the container.
- Required if: ports.publicly_accessible=true. - Must be:>= 1and<= 65535.
- id string
- Id of the port.
- internalPort number
- Internal port of the container.
- Must be: >= 1and<= 65535.
- isDefault 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 container.
- Can be: GRPC,HTTP,TCP,UDP. - Default:HTTP.
- publiclyAccessible boolean
- Specify if the port is exposed to the world or not for this container.
- external_port int
- External port of the container.
- Required if: ports.publicly_accessible=true. - Must be:>= 1and<= 65535.
- id str
- Id of the port.
- internal_port int
- Internal port of the container.
- 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 container.
- Can be: GRPC,HTTP,TCP,UDP. - Default:HTTP.
- publicly_accessible bool
- Specify if the port is exposed to the world or not for this container.
- externalPort Number
- External port of the container.
- Required if: ports.publicly_accessible=true. - Must be:>= 1and<= 65535.
- id String
- Id of the port.
- internalPort Number
- Internal port of the container.
- Must be: >= 1and<= 65535.
- isDefault 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 container.
- Can be: GRPC,HTTP,TCP,UDP. - Default:HTTP.
- publiclyAccessible Boolean
- Specify if the port is exposed to the world or not for this container.
GetContainerSecret  
- 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.
GetContainerSecretAlias   
- 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.
GetContainerSecretOverride   
- 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.
GetContainerStorage  
- Id string
- Id of the storage.
- MountPoint string
- Mount point of the storage for the container.
- Size int
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be: >= 1.
- Type string
- Type of the storage for the container.
- Can be: FAST_SSD.
- Id string
- Id of the storage.
- MountPoint string
- Mount point of the storage for the container.
- Size int
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be: >= 1.
- Type string
- Type of the storage for the container.
- Can be: FAST_SSD.
- id String
- Id of the storage.
- mountPoint String
- Mount point of the storage for the container.
- size Integer
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be: >= 1.
- type String
- Type of the storage for the container.
- Can be: FAST_SSD.
- id string
- Id of the storage.
- mountPoint string
- Mount point of the storage for the container.
- size number
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be: >= 1.
- type string
- Type of the storage for the container.
- Can be: FAST_SSD.
- id str
- Id of the storage.
- mount_point str
- Mount point of the storage for the container.
- size int
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be: >= 1.
- type str
- Type of the storage for the container.
- Can be: FAST_SSD.
- id String
- Id of the storage.
- mountPoint String
- Mount point of the storage for the container.
- size Number
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be: >= 1.
- type String
- Type of the storage for the container.
- 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.