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

qovery.getHelm

Explore with Pulumi AI

qovery logo
Qovery v0.41.0 published on Saturday, Sep 28, 2024 by dirien

    # 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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: qovery:index/getHelm:getHelm
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getHelm Result

    The following output properties are available:

    AdvancedSettingsJson string
    AllowClusterWideResources bool
    Arguments List<string>
    AutoDeploy bool
    AutoPreview bool
    BuiltInEnvironmentVariables List<ediri.Qovery.Outputs.GetHelmBuiltInEnvironmentVariable>
    DeploymentStageId string
    EnvironmentId string
    EnvironmentVariableAliases List<ediri.Qovery.Outputs.GetHelmEnvironmentVariableAlias>
    ExternalHost string
    IconUri string
    Id string
    InternalHost string
    Name string
    Ports Dictionary<string, ediri.Qovery.Outputs.GetHelmPorts>
    Source ediri.Qovery.Outputs.GetHelmSource
    TimeoutSec int
    ValuesOverride ediri.Qovery.Outputs.GetHelmValuesOverride
    CustomDomains List<ediri.Qovery.Outputs.GetHelmCustomDomain>
    DeploymentRestrictions List<ediri.Qovery.Outputs.GetHelmDeploymentRestriction>
    EnvironmentVariableOverrides List<ediri.Qovery.Outputs.GetHelmEnvironmentVariableOverride>
    EnvironmentVariables List<ediri.Qovery.Outputs.GetHelmEnvironmentVariable>
    SecretAliases List<ediri.Qovery.Outputs.GetHelmSecretAlias>
    SecretOverrides List<ediri.Qovery.Outputs.GetHelmSecretOverride>
    Secrets List<ediri.Qovery.Outputs.GetHelmSecret>
    advanced_settings_json str
    allow_cluster_wide_resources bool
    arguments Sequence[str]
    auto_deploy bool
    auto_preview bool
    built_in_environment_variables Sequence[GetHelmBuiltInEnvironmentVariable]
    deployment_stage_id str
    environment_id str
    environment_variable_aliases Sequence[GetHelmEnvironmentVariableAlias]
    external_host str
    icon_uri str
    id str
    internal_host str
    name str
    ports Mapping[str, GetHelmPorts]
    source GetHelmSource
    timeout_sec int
    values_override GetHelmValuesOverride
    custom_domains Sequence[GetHelmCustomDomain]
    deployment_restrictions Sequence[GetHelmDeploymentRestriction]
    environment_variable_overrides Sequence[GetHelmEnvironmentVariableOverride]
    environment_variables Sequence[GetHelmEnvironmentVariable]
    secret_aliases Sequence[GetHelmSecretAlias]
    secret_overrides Sequence[GetHelmSecretOverride]
    secrets Sequence[GetHelmSecret]

    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.
    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 true then we only check the domain points to an IP
    • If false then we check that the domain resolves to the correct service Load Balancer
    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 true then we only check the domain points to an IP
    • If false then we check that the domain resolves to the correct service Load Balancer
    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 true then we only check the domain points to an IP
    • If false then we check that the domain resolves to the correct service Load Balancer
    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 true then we only check the domain points to an IP
    • If false then we check that the domain resolves to the correct service Load Balancer
    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 true then we only check the domain points to an IP
    • If false then we check that the domain resolves to the correct service Load Balancer
    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 true then we only check the domain points to an IP
    • If false then we check that the domain resolves to the correct service Load Balancer

    GetHelmDeploymentRestriction

    Id string
    Id of the deployment restriction
    Mode string
    Can be EXCLUDE or MATCH
    Type string
    Currently, only PATH is accepted
    Value string
    Value of the deployment restriction
    Id string
    Id of the deployment restriction
    Mode string
    Can be EXCLUDE or MATCH
    Type string
    Currently, only PATH is accepted
    Value string
    Value of the deployment restriction
    id String
    Id of the deployment restriction
    mode String
    Can be EXCLUDE or MATCH
    type String
    Currently, only PATH is accepted
    value String
    Value of the deployment restriction
    id string
    Id of the deployment restriction
    mode string
    Can be EXCLUDE or MATCH
    type string
    Currently, only PATH is accepted
    value string
    Value of the deployment restriction
    id str
    Id of the deployment restriction
    mode str
    Can be EXCLUDE or MATCH
    type str
    Currently, only PATH is accepted
    value str
    Value of the deployment restriction
    id String
    Id of the deployment restriction
    mode String
    Can be EXCLUDE or MATCH
    type String
    Currently, only PATH is accepted
    value String
    Value of the deployment restriction

    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

    ExternalPort int
    External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    InternalPort int
    Internal port of the container. - Must be: >= 1 and <= 65535.
    IsDefault 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.
    ServiceName string
    Namespace string
    ExternalPort int
    External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    InternalPort int
    Internal port of the container. - Must be: >= 1 and <= 65535.
    IsDefault 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.
    ServiceName string
    Namespace string
    externalPort Integer
    External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    internalPort Integer
    Internal port of the container. - Must be: >= 1 and <= 65535.
    isDefault 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.
    serviceName String
    namespace String
    externalPort number
    External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    internalPort number
    Internal port of the container. - Must be: >= 1 and <= 65535.
    isDefault 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.
    serviceName string
    namespace string
    external_port int
    External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    internal_port int
    Internal port of the container. - Must be: >= 1 and <= 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
    externalPort Number
    External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
    internalPort Number
    Internal port of the container. - Must be: >= 1 and <= 65535.
    isDefault 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.
    serviceName 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

    GitRepository GetHelmSourceGitRepository
    Git repository
    HelmRepository GetHelmSourceHelmRepository
    Helm repositories can be private or public
    gitRepository GetHelmSourceGitRepository
    Git repository
    helmRepository GetHelmSourceHelmRepository
    Helm repositories can be private or public
    gitRepository GetHelmSourceGitRepository
    Git repository
    helmRepository GetHelmSourceHelmRepository
    Helm repositories can be private or public
    git_repository GetHelmSourceGitRepository
    Git repository
    helm_repository GetHelmSourceHelmRepository
    Helm repositories can be private or public
    gitRepository Property Map
    Git repository
    helmRepository Property Map
    Helm repositories can be private or public

    GetHelmSourceGitRepository

    Branch string
    Helm's source git repository branch
    GitTokenId string
    The git token ID to be used
    RootPath string
    Helm's source git repository root path
    Url string
    Helm's source git repository URL
    Branch string
    Helm's source git repository branch
    GitTokenId string
    The git token ID to be used
    RootPath string
    Helm's source git repository root path
    Url string
    Helm's source git repository URL
    branch String
    Helm's source git repository branch
    gitTokenId String
    The git token ID to be used
    rootPath String
    Helm's source git repository root path
    url String
    Helm's source git repository URL
    branch string
    Helm's source git repository branch
    gitTokenId string
    The git token ID to be used
    rootPath 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_id str
    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
    gitTokenId String
    The git token ID to be used
    rootPath String
    Helm's source git repository root path
    url String
    Helm's source git repository URL

    GetHelmSourceHelmRepository

    ChartName string
    Chart name
    ChartVersion string
    Chart version
    HelmRepositoryId string
    helm repository id
    ChartName string
    Chart name
    ChartVersion string
    Chart version
    HelmRepositoryId string
    helm repository id
    chartName String
    Chart name
    chartVersion String
    Chart version
    helmRepositoryId String
    helm repository id
    chartName string
    Chart name
    chartVersion string
    Chart version
    helmRepositoryId string
    helm repository id
    chart_name str
    Chart name
    chart_version str
    Chart version
    helm_repository_id str
    helm repository id
    chartName String
    Chart name
    chartVersion String
    Chart version
    helmRepositoryId String
    helm repository id

    GetHelmValuesOverride

    File ediri.Qovery.Inputs.GetHelmValuesOverrideFile
    Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
    Set Dictionary<string, string>
    SetJson Dictionary<string, string>
    SetString Dictionary<string, string>
    File GetHelmValuesOverrideFile
    Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
    Set map[string]string
    SetJson map[string]string
    SetString map[string]string
    file GetHelmValuesOverrideFile
    Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
    set Map<String,String>
    setJson Map<String,String>
    setString Map<String,String>
    file GetHelmValuesOverrideFile
    Define overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
    set {[key: string]: string}
    setJson {[key: string]: string}
    setString {[key: string]: string}
    file GetHelmValuesOverrideFile
    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>
    setJson Map<String>
    setString Map<String>

    GetHelmValuesOverrideFile

    GitRepository ediri.Qovery.Inputs.GetHelmValuesOverrideFileGitRepository
    YAML file from a git repository
    Raw Dictionary<string, ediri.Qovery.Inputs.GetHelmValuesOverrideFileRaw>
    Raw YAML files
    GitRepository GetHelmValuesOverrideFileGitRepository
    YAML file from a git repository
    Raw map[string]GetHelmValuesOverrideFileRaw
    Raw YAML files
    gitRepository GetHelmValuesOverrideFileGitRepository
    YAML file from a git repository
    raw Map<String,GetHelmValuesOverrideFileRaw>
    Raw YAML files
    gitRepository GetHelmValuesOverrideFileGitRepository
    YAML file from a git repository
    raw {[key: string]: GetHelmValuesOverrideFileRaw}
    Raw YAML files
    git_repository GetHelmValuesOverrideFileGitRepository
    YAML file from a git repository
    raw Mapping[str, GetHelmValuesOverrideFileRaw]
    Raw YAML files
    gitRepository Property Map
    YAML file from a git repository
    raw Map<Property Map>
    Raw YAML files

    GetHelmValuesOverrideFileGitRepository

    Branch string
    YAML file git repository branch
    GitTokenId string
    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
    GitTokenId string
    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
    gitTokenId String
    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
    gitTokenId string
    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_id str
    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
    gitTokenId String
    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 qovery Terraform Provider.
    qovery logo
    Qovery v0.41.0 published on Saturday, Sep 28, 2024 by dirien