Qovery v0.41.0 published on Saturday, Sep 28, 2024 by dirien
qovery.getHelm
Explore with Pulumi AI
# qovery.Helm (Data Source)
Provides a Qovery helm resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as qovery from "@pulumi/qovery";
const myHelm = qovery.getHelm({
    id: "<helm_id>",
});
import pulumi
import pulumi_qovery as qovery
my_helm = qovery.get_helm(id="<helm_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.LookupHelm(ctx, &qovery.LookupHelmArgs{
			Id: "<helm_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 myHelm = Qovery.GetHelm.Invoke(new()
    {
        Id = "<helm_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.GetHelmArgs;
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 myHelm = QoveryFunctions.getHelm(GetHelmArgs.builder()
            .id("<helm_id>")
            .build());
    }
}
variables:
  myHelm:
    fn::invoke:
      Function: qovery:getHelm
      Arguments:
        id: <helm_id>
Using getHelm
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 getHelm(args: GetHelmArgs, opts?: InvokeOptions): Promise<GetHelmResult>
function getHelmOutput(args: GetHelmOutputArgs, opts?: InvokeOptions): Output<GetHelmResult>def get_helm(advanced_settings_json: Optional[str] = None,
             arguments: Optional[Sequence[str]] = None,
             auto_deploy: Optional[bool] = None,
             auto_preview: Optional[bool] = None,
             custom_domains: Optional[Sequence[GetHelmCustomDomain]] = None,
             deployment_restrictions: Optional[Sequence[GetHelmDeploymentRestriction]] = None,
             deployment_stage_id: Optional[str] = None,
             environment_variable_aliases: Optional[Sequence[GetHelmEnvironmentVariableAlias]] = None,
             environment_variable_overrides: Optional[Sequence[GetHelmEnvironmentVariableOverride]] = None,
             environment_variables: Optional[Sequence[GetHelmEnvironmentVariable]] = None,
             icon_uri: Optional[str] = None,
             id: Optional[str] = None,
             secret_aliases: Optional[Sequence[GetHelmSecretAlias]] = None,
             secret_overrides: Optional[Sequence[GetHelmSecretOverride]] = None,
             secrets: Optional[Sequence[GetHelmSecret]] = None,
             timeout_sec: Optional[int] = None,
             opts: Optional[InvokeOptions] = None) -> GetHelmResult
def get_helm_output(advanced_settings_json: Optional[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,
             custom_domains: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmCustomDomainArgs]]]] = None,
             deployment_restrictions: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmDeploymentRestrictionArgs]]]] = None,
             deployment_stage_id: Optional[pulumi.Input[str]] = None,
             environment_variable_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmEnvironmentVariableAliasArgs]]]] = None,
             environment_variable_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmEnvironmentVariableOverrideArgs]]]] = None,
             environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmEnvironmentVariableArgs]]]] = None,
             icon_uri: Optional[pulumi.Input[str]] = None,
             id: Optional[pulumi.Input[str]] = None,
             secret_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmSecretAliasArgs]]]] = None,
             secret_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmSecretOverrideArgs]]]] = None,
             secrets: Optional[pulumi.Input[Sequence[pulumi.Input[GetHelmSecretArgs]]]] = None,
             timeout_sec: Optional[pulumi.Input[int]] = None,
             opts: Optional[InvokeOptions] = None) -> Output[GetHelmResult]func LookupHelm(ctx *Context, args *LookupHelmArgs, opts ...InvokeOption) (*LookupHelmResult, error)
func LookupHelmOutput(ctx *Context, args *LookupHelmOutputArgs, opts ...InvokeOption) LookupHelmResultOutput> Note: This function is named LookupHelm in the Go SDK.
public static class GetHelm 
{
    public static Task<GetHelmResult> InvokeAsync(GetHelmArgs args, InvokeOptions? opts = null)
    public static Output<GetHelmResult> Invoke(GetHelmInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetHelmResult> getHelm(GetHelmArgs args, InvokeOptions options)
public static Output<GetHelmResult> getHelm(GetHelmArgs args, InvokeOptions options)
fn::invoke:
  function: qovery:index/getHelm:getHelm
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Id string
 - Advanced
Settings stringJson  - Arguments List<string>
 - Auto
Deploy bool - Auto
Preview bool - Custom
Domains List<ediri.Qovery. Inputs. Get Helm Custom Domain>  - Deployment
Restrictions List<ediri.Qovery. Inputs. Get Helm Deployment Restriction>  - Deployment
Stage stringId  - Environment
Variable List<ediri.Aliases Qovery. Inputs. Get Helm Environment Variable Alias>  - Environment
Variable List<ediri.Overrides Qovery. Inputs. Get Helm Environment Variable Override>  - Environment
Variables List<ediri.Qovery. Inputs. Get Helm Environment Variable>  - Icon
Uri string - Secret
Aliases List<ediri.Qovery. Inputs. Get Helm Secret Alias>  - Secret
Overrides List<ediri.Qovery. Inputs. Get Helm Secret Override>  - Secrets
List<ediri.
Qovery. Inputs. Get Helm Secret>  - Timeout
Sec int 
- Id string
 - Advanced
Settings stringJson  - Arguments []string
 - Auto
Deploy bool - Auto
Preview bool - Custom
Domains []GetHelm Custom Domain  - Deployment
Restrictions []GetHelm Deployment Restriction  - Deployment
Stage stringId  - Environment
Variable []GetAliases Helm Environment Variable Alias  - Environment
Variable []GetOverrides Helm Environment Variable Override  - Environment
Variables []GetHelm Environment Variable  - Icon
Uri string - Secret
Aliases []GetHelm Secret Alias  - Secret
Overrides []GetHelm Secret Override  - Secrets
[]Get
Helm Secret  - Timeout
Sec int 
- id String
 - advanced
Settings StringJson  - arguments List<String>
 - auto
Deploy Boolean - auto
Preview Boolean - custom
Domains List<GetHelm Custom Domain>  - deployment
Restrictions List<GetHelm Deployment Restriction>  - deployment
Stage StringId  - environment
Variable List<GetAliases Helm Environment Variable Alias>  - environment
Variable List<GetOverrides Helm Environment Variable Override>  - environment
Variables List<GetHelm Environment Variable>  - icon
Uri String - secret
Aliases List<GetHelm Secret Alias>  - secret
Overrides List<GetHelm Secret Override>  - secrets
List<Get
Helm Secret>  - timeout
Sec Integer 
- id string
 - advanced
Settings stringJson  - arguments string[]
 - auto
Deploy boolean - auto
Preview boolean - custom
Domains GetHelm Custom Domain[]  - deployment
Restrictions GetHelm Deployment Restriction[]  - deployment
Stage stringId  - environment
Variable GetAliases Helm Environment Variable Alias[]  - environment
Variable GetOverrides Helm Environment Variable Override[]  - environment
Variables GetHelm Environment Variable[]  - icon
Uri string - secret
Aliases GetHelm Secret Alias[]  - secret
Overrides GetHelm Secret Override[]  - secrets
Get
Helm Secret[]  - timeout
Sec number 
- id str
 - advanced_
settings_ strjson  - arguments Sequence[str]
 - auto_
deploy bool - auto_
preview bool - custom_
domains Sequence[GetHelm Custom Domain]  - deployment_
restrictions Sequence[GetHelm Deployment Restriction]  - deployment_
stage_ strid  - environment_
variable_ Sequence[Getaliases Helm Environment Variable Alias]  - environment_
variable_ Sequence[Getoverrides Helm Environment Variable Override]  - environment_
variables Sequence[GetHelm Environment Variable]  - icon_
uri str - secret_
aliases Sequence[GetHelm Secret Alias]  - secret_
overrides Sequence[GetHelm Secret Override]  - secrets
Sequence[Get
Helm Secret]  - timeout_
sec int 
- id String
 - advanced
Settings StringJson  - arguments List<String>
 - auto
Deploy Boolean - auto
Preview Boolean - custom
Domains List<Property Map> - deployment
Restrictions List<Property Map> - deployment
Stage StringId  - environment
Variable List<Property Map>Aliases  - environment
Variable List<Property Map>Overrides  - environment
Variables List<Property Map> - icon
Uri String - secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
 - timeout
Sec Number 
getHelm Result
The following output properties are available:
- Advanced
Settings stringJson  - Allow
Cluster boolWide Resources  - Arguments List<string>
 - Auto
Deploy bool - Auto
Preview bool - Built
In List<ediri.Environment Variables Qovery. Outputs. Get Helm Built In Environment Variable>  - Deployment
Stage stringId  - Environment
Id string - Environment
Variable List<ediri.Aliases Qovery. Outputs. Get Helm Environment Variable Alias>  - External
Host string - Icon
Uri string - Id string
 - Internal
Host string - Name string
 - Ports
Dictionary<string, ediri.
Qovery. Outputs. Get Helm Ports>  - Source
ediri.
Qovery. Outputs. Get Helm Source  - Timeout
Sec int - Values
Override ediri.Qovery. Outputs. Get Helm Values Override  - Custom
Domains List<ediri.Qovery. Outputs. Get Helm Custom Domain>  - Deployment
Restrictions List<ediri.Qovery. Outputs. Get Helm Deployment Restriction>  - Environment
Variable List<ediri.Overrides Qovery. Outputs. Get Helm Environment Variable Override>  - Environment
Variables List<ediri.Qovery. Outputs. Get Helm Environment Variable>  - Secret
Aliases List<ediri.Qovery. Outputs. Get Helm Secret Alias>  - Secret
Overrides List<ediri.Qovery. Outputs. Get Helm Secret Override>  - Secrets
List<ediri.
Qovery. Outputs. Get Helm Secret>  
- Advanced
Settings stringJson  - Allow
Cluster boolWide Resources  - Arguments []string
 - Auto
Deploy bool - Auto
Preview bool - Built
In []GetEnvironment Variables Helm Built In Environment Variable  - Deployment
Stage stringId  - Environment
Id string - Environment
Variable []GetAliases Helm Environment Variable Alias  - External
Host string - Icon
Uri string - Id string
 - Internal
Host string - Name string
 - Ports
map[string]Get
Helm Ports  - Source
Get
Helm Source  - Timeout
Sec int - Values
Override GetHelm Values Override  - Custom
Domains []GetHelm Custom Domain  - Deployment
Restrictions []GetHelm Deployment Restriction  - Environment
Variable []GetOverrides Helm Environment Variable Override  - Environment
Variables []GetHelm Environment Variable  - Secret
Aliases []GetHelm Secret Alias  - Secret
Overrides []GetHelm Secret Override  - Secrets
[]Get
Helm Secret  
- advanced
Settings StringJson  - allow
Cluster BooleanWide Resources  - arguments List<String>
 - auto
Deploy Boolean - auto
Preview Boolean - built
In List<GetEnvironment Variables Helm Built In Environment Variable>  - deployment
Stage StringId  - environment
Id String - environment
Variable List<GetAliases Helm Environment Variable Alias>  - external
Host String - icon
Uri String - id String
 - internal
Host String - name String
 - ports
Map<String,Get
Helm Ports>  - source
Get
Helm Source  - timeout
Sec Integer - values
Override GetHelm Values Override  - custom
Domains List<GetHelm Custom Domain>  - deployment
Restrictions List<GetHelm Deployment Restriction>  - environment
Variable List<GetOverrides Helm Environment Variable Override>  - environment
Variables List<GetHelm Environment Variable>  - secret
Aliases List<GetHelm Secret Alias>  - secret
Overrides List<GetHelm Secret Override>  - secrets
List<Get
Helm Secret>  
- advanced
Settings stringJson  - allow
Cluster booleanWide Resources  - arguments string[]
 - auto
Deploy boolean - auto
Preview boolean - built
In GetEnvironment Variables Helm Built In Environment Variable[]  - deployment
Stage stringId  - environment
Id string - environment
Variable GetAliases Helm Environment Variable Alias[]  - external
Host string - icon
Uri string - id string
 - internal
Host string - name string
 - ports
{[key: string]: Get
Helm Ports}  - source
Get
Helm Source  - timeout
Sec number - values
Override GetHelm Values Override  - custom
Domains GetHelm Custom Domain[]  - deployment
Restrictions GetHelm Deployment Restriction[]  - environment
Variable GetOverrides Helm Environment Variable Override[]  - environment
Variables GetHelm Environment Variable[]  - secret
Aliases GetHelm Secret Alias[]  - secret
Overrides GetHelm Secret Override[]  - secrets
Get
Helm Secret[]  
- advanced_
settings_ strjson  - allow_
cluster_ boolwide_ resources  - arguments Sequence[str]
 - auto_
deploy bool - auto_
preview bool - built_
in_ Sequence[Getenvironment_ variables Helm Built In Environment Variable]  - deployment_
stage_ strid  - environment_
id str - environment_
variable_ Sequence[Getaliases Helm Environment Variable Alias]  - external_
host str - icon_
uri str - id str
 - internal_
host str - name str
 - ports
Mapping[str, Get
Helm Ports]  - source
Get
Helm Source  - timeout_
sec int - values_
override GetHelm Values Override  - custom_
domains Sequence[GetHelm Custom Domain]  - deployment_
restrictions Sequence[GetHelm Deployment Restriction]  - environment_
variable_ Sequence[Getoverrides Helm Environment Variable Override]  - environment_
variables Sequence[GetHelm Environment Variable]  - secret_
aliases Sequence[GetHelm Secret Alias]  - secret_
overrides Sequence[GetHelm Secret Override]  - secrets
Sequence[Get
Helm Secret]  
- advanced
Settings StringJson  - allow
Cluster BooleanWide Resources  - arguments List<String>
 - auto
Deploy Boolean - auto
Preview Boolean - built
In List<Property Map>Environment Variables  - deployment
Stage StringId  - environment
Id String - environment
Variable List<Property Map>Aliases  - external
Host String - icon
Uri String - id String
 - internal
Host String - name String
 - ports Map<Property Map>
 - source Property Map
 - timeout
Sec Number - values
Override Property Map - custom
Domains List<Property Map> - deployment
Restrictions List<Property Map> - environment
Variable List<Property Map>Overrides  - environment
Variables List<Property Map> - secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
 
Supporting Types
GetHelmBuiltInEnvironmentVariable     
- 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.
 
GetHelmCustomDomain   
- 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 
 
GetHelmDeploymentRestriction   
GetHelmEnvironmentVariable   
- 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.
 
GetHelmEnvironmentVariableAlias    
- Description string
 - Description of the environment variable.
 - 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.
 - 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.
 - 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.
 - 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.
 - 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.
 - id String
 - Id of the environment variable alias.
 - key String
 - Name of the environment variable alias.
 - value String
 - Name of the variable to alias.
 
GetHelmEnvironmentVariableOverride    
- Description string
 - Description of the environment variable.
 - 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.
 - 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.
 - 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.
 - 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.
 - 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.
 - id String
 - Id of the environment variable override.
 - key String
 - Name of the environment variable override.
 - value String
 - Value of the environment variable override.
 
GetHelmPorts  
- External
Port int - External port of the container.
- Required if: 
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - 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
 - Protocol string
 - Protocol used for the port of the container.
- Can be: 
GRPC,HTTP. - Default:HTTP. - Service
Name string - Namespace string
 
- External
Port int - External port of the container.
- Required if: 
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - 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
 - Protocol string
 - Protocol used for the port of the container.
- Can be: 
GRPC,HTTP. - Default:HTTP. - Service
Name string - Namespace string
 
- external
Port Integer - External port of the container.
- Required if: 
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - internal
Port Integer - Internal port of the container.
- Must be: 
>= 1and<= 65535. - is
Default Boolean - If this port will be used for the root domain
 - protocol String
 - Protocol used for the port of the container.
- Can be: 
GRPC,HTTP. - Default:HTTP. - service
Name String - namespace String
 
- external
Port number - External port of the container.
- Required if: 
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - internal
Port number - Internal port of the container.
- Must be: 
>= 1and<= 65535. - is
Default boolean - If this port will be used for the root domain
 - protocol string
 - Protocol used for the port of the container.
- Can be: 
GRPC,HTTP. - Default:HTTP. - service
Name string - namespace string
 
- external_
port int - External port of the container.
- Required if: 
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - 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
 - protocol str
 - Protocol used for the port of the container.
- Can be: 
GRPC,HTTP. - Default:HTTP. - service_
name str - namespace str
 
- external
Port Number - External port of the container.
- Required if: 
ports.publicly_accessible=true. - Must be:>= 1and<= 65535. - internal
Port Number - Internal port of the container.
- Must be: 
>= 1and<= 65535. - is
Default Boolean - If this port will be used for the root domain
 - protocol String
 - Protocol used for the port of the container.
- Can be: 
GRPC,HTTP. - Default:HTTP. - service
Name String - namespace String
 
GetHelmSecret  
- Description string
 - Description of the environment variable.
 - Id string
 - Id of the secret.
 - Key string
 - Key of the secret.
 - Value string
 - Value of the secret.
 
- Description string
 - Description of the environment variable.
 - Id string
 - Id of the secret.
 - Key string
 - Key of the secret.
 - Value string
 - Value of the secret.
 
- description String
 - Description of the environment variable.
 - id String
 - Id of the secret.
 - key String
 - Key of the secret.
 - value String
 - Value of the secret.
 
- description string
 - Description of the environment variable.
 - id string
 - Id of the secret.
 - key string
 - Key of the secret.
 - value string
 - Value of the secret.
 
- description str
 - Description of the environment variable.
 - id str
 - Id of the secret.
 - key str
 - Key of the secret.
 - value str
 - Value of the secret.
 
- description String
 - Description of the environment variable.
 - id String
 - Id of the secret.
 - key String
 - Key of the secret.
 - value String
 - Value of the secret.
 
GetHelmSecretAlias   
- Description string
 - Description of the environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - id String
 - Id of the secret alias.
 - key String
 - Name of the secret alias.
 - value String
 - Name of the secret to alias.
 
GetHelmSecretOverride   
- Description string
 - Description of the environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - 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 environment variable.
 - id String
 - Id of the secret override.
 - key String
 - Name of the secret override.
 - value String
 - Value of the secret override.
 
GetHelmSource  
- Git
Repository ediri.Qovery. Inputs. Get Helm Source Git Repository  - Git repository
 - Helm
Repository ediri.Qovery. Inputs. Get Helm Source Helm Repository  - Helm repositories can be private or public
 
- Git
Repository GetHelm Source Git Repository  - Git repository
 - Helm
Repository GetHelm Source Helm Repository  - Helm repositories can be private or public
 
- git
Repository GetHelm Source Git Repository  - Git repository
 - helm
Repository GetHelm Source Helm Repository  - Helm repositories can be private or public
 
- git
Repository GetHelm Source Git Repository  - Git repository
 - helm
Repository GetHelm Source Helm Repository  - Helm repositories can be private or public
 
- git_
repository GetHelm Source Git Repository  - Git repository
 - helm_
repository GetHelm Source Helm Repository  - Helm repositories can be private or public
 
- git
Repository Property Map - Git repository
 - helm
Repository Property Map - Helm repositories can be private or public
 
GetHelmSourceGitRepository    
- Branch string
 - Helm's source git repository branch
 - Git
Token stringId  - The git token ID to be used
 - Root
Path string - Helm's source git repository root path
 - Url string
 - Helm's source git repository URL
 
- Branch string
 - Helm's source git repository branch
 - Git
Token stringId  - The git token ID to be used
 - Root
Path string - Helm's source git repository root path
 - Url string
 - Helm's source git repository URL
 
- branch String
 - Helm's source git repository branch
 - git
Token StringId  - The git token ID to be used
 - root
Path String - Helm's source git repository root path
 - url String
 - Helm's source git repository URL
 
- branch string
 - Helm's source git repository branch
 - git
Token stringId  - The git token ID to be used
 - root
Path string - Helm's source git repository root path
 - url string
 - Helm's source git repository URL
 
- branch str
 - Helm's source git repository branch
 - git_
token_ strid  - The git token ID to be used
 - root_
path str - Helm's source git repository root path
 - url str
 - Helm's source git repository URL
 
- branch String
 - Helm's source git repository branch
 - git
Token StringId  - The git token ID to be used
 - root
Path String - Helm's source git repository root path
 - url String
 - Helm's source git repository URL
 
GetHelmSourceHelmRepository    
- Chart
Name string - Chart name
 - Chart
Version string - Chart version
 - Helm
Repository stringId  - helm repository id
 
- Chart
Name string - Chart name
 - Chart
Version string - Chart version
 - Helm
Repository stringId  - helm repository id
 
- chart
Name String - Chart name
 - chart
Version String - Chart version
 - helm
Repository StringId  - helm repository id
 
- chart
Name string - Chart name
 - chart
Version string - Chart version
 - helm
Repository stringId  - helm repository id
 
- chart_
name str - Chart name
 - chart_
version str - Chart version
 - helm_
repository_ strid  - helm repository id
 
- chart
Name String - Chart name
 - chart
Version String - Chart version
 - helm
Repository StringId  - helm repository id
 
GetHelmValuesOverride   
- File
ediri.
Qovery. Inputs. Get Helm Values Override File  - Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
 - Set Dictionary<string, string>
 - Set
Json Dictionary<string, string> - Set
String Dictionary<string, string> 
- File
Get
Helm Values Override File  - Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
 - Set map[string]string
 - Set
Json map[string]string - Set
String map[string]string 
- file
Get
Helm Values Override File  - Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
 - set Map<String,String>
 - set
Json Map<String,String> - set
String Map<String,String> 
- file
Get
Helm Values Override File  - Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
 - set {[key: string]: string}
 - set
Json {[key: string]: string} - set
String {[key: string]: string} 
- file
Get
Helm Values Override File  - Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
 - set Mapping[str, str]
 - set_
json Mapping[str, str] - set_
string Mapping[str, str] 
- file Property Map
 - Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
 - set Map<String>
 - set
Json Map<String> - set
String Map<String> 
GetHelmValuesOverrideFile    
- Git
Repository ediri.Qovery. Inputs. Get Helm Values Override File Git Repository  - YAML file from a git repository
 - Raw
Dictionary<string, ediri.
Qovery. Inputs. Get Helm Values Override File Raw>  - Raw YAML files
 
- Git
Repository GetHelm Values Override File Git Repository  - YAML file from a git repository
 - Raw
map[string]Get
Helm Values Override File Raw  - Raw YAML files
 
- git
Repository GetHelm Values Override File Git Repository  - YAML file from a git repository
 - raw
Map<String,Get
Helm Values Override File Raw>  - Raw YAML files
 
- git
Repository GetHelm Values Override File Git Repository  - YAML file from a git repository
 - raw
{[key: string]: Get
Helm Values Override File Raw}  - Raw YAML files
 
- git_
repository GetHelm Values Override File Git Repository  - YAML file from a git repository
 - raw
Mapping[str, Get
Helm Values Override File Raw]  - Raw YAML files
 
- git
Repository Property Map - YAML file from a git repository
 - raw Map<Property Map>
 - Raw YAML files
 
GetHelmValuesOverrideFileGitRepository      
- Branch string
 - YAML file git repository branch
 - Git
Token stringId  - The git token ID to be used
 - Paths List<string>
 - YAML files git repository paths
 - Url string
 - YAML file git repository URL
 
- Branch string
 - YAML file git repository branch
 - Git
Token stringId  - The git token ID to be used
 - Paths []string
 - YAML files git repository paths
 - Url string
 - YAML file git repository URL
 
- branch String
 - YAML file git repository branch
 - git
Token StringId  - The git token ID to be used
 - paths List<String>
 - YAML files git repository paths
 - url String
 - YAML file git repository URL
 
- branch string
 - YAML file git repository branch
 - git
Token stringId  - The git token ID to be used
 - paths string[]
 - YAML files git repository paths
 - url string
 - YAML file git repository URL
 
- branch str
 - YAML file git repository branch
 - git_
token_ strid  - The git token ID to be used
 - paths Sequence[str]
 - YAML files git repository paths
 - url str
 - YAML file git repository URL
 
- branch String
 - YAML file git repository branch
 - git
Token StringId  - The git token ID to be used
 - paths List<String>
 - YAML files git repository paths
 - url String
 - YAML file git repository URL
 
GetHelmValuesOverrideFileRaw     
- Content string
 - content of the file
 
- Content string
 - content of the file
 
- content String
 - content of the file
 
- content string
 - content of the file
 
- content str
 - content of the file
 
- content String
 - content of the file
 
Package Details
- Repository
 - qovery dirien/pulumi-qovery
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
qoveryTerraform Provider.