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.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>",
});
Copy
import pulumi
import pulumi_qovery as qovery

my_helm = qovery.get_helm(id="<helm_id>")
Copy
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
	})
}
Copy
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>",
    });

});
Copy
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());

    }
}
Copy
variables:
  myHelm:
    fn::invoke:
      Function: qovery:getHelm
      Arguments:
        id: <helm_id>
Copy

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>
Copy
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]
Copy
func LookupHelm(ctx *Context, args *LookupHelmArgs, opts ...InvokeOption) (*LookupHelmResult, error)
func LookupHelmOutput(ctx *Context, args *LookupHelmOutputArgs, opts ...InvokeOption) LookupHelmResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetHelmResult> getHelm(GetHelmArgs args, InvokeOptions options)
public static Output<GetHelmResult> getHelm(GetHelmArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: qovery:index/getHelm:getHelm
  arguments:
    # arguments dictionary
Copy

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 This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable.
Key This property is required. string
Key of the environment variable.
Value This property is required. string
Value of the environment variable.
Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable.
Key This property is required. string
Key of the environment variable.
Value This property is required. string
Value of the environment variable.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable.
key This property is required. String
Key of the environment variable.
value This property is required. String
Value of the environment variable.
description This property is required. string
Description of the environment variable.
id This property is required. string
Id of the environment variable.
key This property is required. string
Key of the environment variable.
value This property is required. string
Value of the environment variable.
description This property is required. str
Description of the environment variable.
id This property is required. str
Id of the environment variable.
key This property is required. str
Key of the environment variable.
value This property is required. str
Value of the environment variable.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable.
key This property is required. String
Key of the environment variable.
value This property is required. String
Value of the environment variable.

GetHelmCustomDomain

Domain This property is required. string
Your custom domain.
Id This property is required. string
Id of the custom domain.
Status This property is required. string
Status of the custom domain.
ValidationDomain This property is required. 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 This property is required. string
Your custom domain.
Id This property is required. string
Id of the custom domain.
Status This property is required. string
Status of the custom domain.
ValidationDomain This property is required. 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 This property is required. String
Your custom domain.
id This property is required. String
Id of the custom domain.
status This property is required. String
Status of the custom domain.
validationDomain This property is required. 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 This property is required. string
Your custom domain.
id This property is required. string
Id of the custom domain.
status This property is required. string
Status of the custom domain.
validationDomain This property is required. 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 This property is required. str
Your custom domain.
id This property is required. str
Id of the custom domain.
status This property is required. str
Status of the custom domain.
validation_domain This property is required. 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 This property is required. String
Your custom domain.
id This property is required. String
Id of the custom domain.
status This property is required. String
Status of the custom domain.
validationDomain This property is required. 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 This property is required. string
Id of the deployment restriction
Mode This property is required. string
Can be EXCLUDE or MATCH
Type This property is required. string
Currently, only PATH is accepted
Value This property is required. string
Value of the deployment restriction
Id This property is required. string
Id of the deployment restriction
Mode This property is required. string
Can be EXCLUDE or MATCH
Type This property is required. string
Currently, only PATH is accepted
Value This property is required. string
Value of the deployment restriction
id This property is required. String
Id of the deployment restriction
mode This property is required. String
Can be EXCLUDE or MATCH
type This property is required. String
Currently, only PATH is accepted
value This property is required. String
Value of the deployment restriction
id This property is required. string
Id of the deployment restriction
mode This property is required. string
Can be EXCLUDE or MATCH
type This property is required. string
Currently, only PATH is accepted
value This property is required. string
Value of the deployment restriction
id This property is required. str
Id of the deployment restriction
mode This property is required. str
Can be EXCLUDE or MATCH
type This property is required. str
Currently, only PATH is accepted
value This property is required. str
Value of the deployment restriction
id This property is required. String
Id of the deployment restriction
mode This property is required. String
Can be EXCLUDE or MATCH
type This property is required. String
Currently, only PATH is accepted
value This property is required. String
Value of the deployment restriction

GetHelmEnvironmentVariable

Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable.
Key This property is required. string
Key of the environment variable.
Value This property is required. string
Value of the environment variable.
Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable.
Key This property is required. string
Key of the environment variable.
Value This property is required. string
Value of the environment variable.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable.
key This property is required. String
Key of the environment variable.
value This property is required. String
Value of the environment variable.
description This property is required. string
Description of the environment variable.
id This property is required. string
Id of the environment variable.
key This property is required. string
Key of the environment variable.
value This property is required. string
Value of the environment variable.
description This property is required. str
Description of the environment variable.
id This property is required. str
Id of the environment variable.
key This property is required. str
Key of the environment variable.
value This property is required. str
Value of the environment variable.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable.
key This property is required. String
Key of the environment variable.
value This property is required. String
Value of the environment variable.

GetHelmEnvironmentVariableAlias

Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable alias.
Key This property is required. string
Name of the environment variable alias.
Value This property is required. string
Name of the variable to alias.
Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable alias.
Key This property is required. string
Name of the environment variable alias.
Value This property is required. string
Name of the variable to alias.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable alias.
key This property is required. String
Name of the environment variable alias.
value This property is required. String
Name of the variable to alias.
description This property is required. string
Description of the environment variable.
id This property is required. string
Id of the environment variable alias.
key This property is required. string
Name of the environment variable alias.
value This property is required. string
Name of the variable to alias.
description This property is required. str
Description of the environment variable.
id This property is required. str
Id of the environment variable alias.
key This property is required. str
Name of the environment variable alias.
value This property is required. str
Name of the variable to alias.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable alias.
key This property is required. String
Name of the environment variable alias.
value This property is required. String
Name of the variable to alias.

GetHelmEnvironmentVariableOverride

Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable override.
Key This property is required. string
Name of the environment variable override.
Value This property is required. string
Value of the environment variable override.
Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the environment variable override.
Key This property is required. string
Name of the environment variable override.
Value This property is required. string
Value of the environment variable override.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable override.
key This property is required. String
Name of the environment variable override.
value This property is required. String
Value of the environment variable override.
description This property is required. string
Description of the environment variable.
id This property is required. string
Id of the environment variable override.
key This property is required. string
Name of the environment variable override.
value This property is required. string
Value of the environment variable override.
description This property is required. str
Description of the environment variable.
id This property is required. str
Id of the environment variable override.
key This property is required. str
Name of the environment variable override.
value This property is required. str
Value of the environment variable override.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the environment variable override.
key This property is required. String
Name of the environment variable override.
value This property is required. String
Value of the environment variable override.

GetHelmPorts

ExternalPort This property is required. int
External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
InternalPort This property is required. int
Internal port of the container. - Must be: >= 1 and <= 65535.
IsDefault This property is required. bool
If this port will be used for the root domain
Protocol This property is required. string
Protocol used for the port of the container. - Can be: GRPC, HTTP. - Default: HTTP.
ServiceName This property is required. string
Namespace string
ExternalPort This property is required. int
External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
InternalPort This property is required. int
Internal port of the container. - Must be: >= 1 and <= 65535.
IsDefault This property is required. bool
If this port will be used for the root domain
Protocol This property is required. string
Protocol used for the port of the container. - Can be: GRPC, HTTP. - Default: HTTP.
ServiceName This property is required. string
Namespace string
externalPort This property is required. Integer
External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
internalPort This property is required. Integer
Internal port of the container. - Must be: >= 1 and <= 65535.
isDefault This property is required. Boolean
If this port will be used for the root domain
protocol This property is required. String
Protocol used for the port of the container. - Can be: GRPC, HTTP. - Default: HTTP.
serviceName This property is required. String
namespace String
externalPort This property is required. number
External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
internalPort This property is required. number
Internal port of the container. - Must be: >= 1 and <= 65535.
isDefault This property is required. boolean
If this port will be used for the root domain
protocol This property is required. string
Protocol used for the port of the container. - Can be: GRPC, HTTP. - Default: HTTP.
serviceName This property is required. string
namespace string
external_port This property is required. int
External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
internal_port This property is required. int
Internal port of the container. - Must be: >= 1 and <= 65535.
is_default This property is required. bool
If this port will be used for the root domain
protocol This property is required. str
Protocol used for the port of the container. - Can be: GRPC, HTTP. - Default: HTTP.
service_name This property is required. str
namespace str
externalPort This property is required. Number
External port of the container. - Required if: ports.publicly_accessible=true. - Must be: >= 1 and <= 65535.
internalPort This property is required. Number
Internal port of the container. - Must be: >= 1 and <= 65535.
isDefault This property is required. Boolean
If this port will be used for the root domain
protocol This property is required. String
Protocol used for the port of the container. - Can be: GRPC, HTTP. - Default: HTTP.
serviceName This property is required. String
namespace String

GetHelmSecret

Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the secret.
Key This property is required. string
Key of the secret.
Value This property is required. string
Value of the secret.
Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the secret.
Key This property is required. string
Key of the secret.
Value This property is required. string
Value of the secret.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the secret.
key This property is required. String
Key of the secret.
value This property is required. String
Value of the secret.
description This property is required. string
Description of the environment variable.
id This property is required. string
Id of the secret.
key This property is required. string
Key of the secret.
value This property is required. string
Value of the secret.
description This property is required. str
Description of the environment variable.
id This property is required. str
Id of the secret.
key This property is required. str
Key of the secret.
value This property is required. str
Value of the secret.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the secret.
key This property is required. String
Key of the secret.
value This property is required. String
Value of the secret.

GetHelmSecretAlias

Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the secret alias.
Key This property is required. string
Name of the secret alias.
Value This property is required. string
Name of the secret to alias.
Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the secret alias.
Key This property is required. string
Name of the secret alias.
Value This property is required. string
Name of the secret to alias.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the secret alias.
key This property is required. String
Name of the secret alias.
value This property is required. String
Name of the secret to alias.
description This property is required. string
Description of the environment variable.
id This property is required. string
Id of the secret alias.
key This property is required. string
Name of the secret alias.
value This property is required. string
Name of the secret to alias.
description This property is required. str
Description of the environment variable.
id This property is required. str
Id of the secret alias.
key This property is required. str
Name of the secret alias.
value This property is required. str
Name of the secret to alias.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the secret alias.
key This property is required. String
Name of the secret alias.
value This property is required. String
Name of the secret to alias.

GetHelmSecretOverride

Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the secret override.
Key This property is required. string
Name of the secret override.
Value This property is required. string
Value of the secret override.
Description This property is required. string
Description of the environment variable.
Id This property is required. string
Id of the secret override.
Key This property is required. string
Name of the secret override.
Value This property is required. string
Value of the secret override.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the secret override.
key This property is required. String
Name of the secret override.
value This property is required. String
Value of the secret override.
description This property is required. string
Description of the environment variable.
id This property is required. string
Id of the secret override.
key This property is required. string
Name of the secret override.
value This property is required. string
Value of the secret override.
description This property is required. str
Description of the environment variable.
id This property is required. str
Id of the secret override.
key This property is required. str
Name of the secret override.
value This property is required. str
Value of the secret override.
description This property is required. String
Description of the environment variable.
id This property is required. String
Id of the secret override.
key This property is required. String
Name of the secret override.
value This property is required. 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 This property is required. string
Helm's source git repository branch
GitTokenId This property is required. string
The git token ID to be used
RootPath This property is required. string
Helm's source git repository root path
Url This property is required. string
Helm's source git repository URL
Branch This property is required. string
Helm's source git repository branch
GitTokenId This property is required. string
The git token ID to be used
RootPath This property is required. string
Helm's source git repository root path
Url This property is required. string
Helm's source git repository URL
branch This property is required. String
Helm's source git repository branch
gitTokenId This property is required. String
The git token ID to be used
rootPath This property is required. String
Helm's source git repository root path
url This property is required. String
Helm's source git repository URL
branch This property is required. string
Helm's source git repository branch
gitTokenId This property is required. string
The git token ID to be used
rootPath This property is required. string
Helm's source git repository root path
url This property is required. string
Helm's source git repository URL
branch This property is required. str
Helm's source git repository branch
git_token_id This property is required. str
The git token ID to be used
root_path This property is required. str
Helm's source git repository root path
url This property is required. str
Helm's source git repository URL
branch This property is required. String
Helm's source git repository branch
gitTokenId This property is required. String
The git token ID to be used
rootPath This property is required. String
Helm's source git repository root path
url This property is required. String
Helm's source git repository URL

GetHelmSourceHelmRepository

ChartName This property is required. string
Chart name
ChartVersion This property is required. string
Chart version
HelmRepositoryId This property is required. string
helm repository id
ChartName This property is required. string
Chart name
ChartVersion This property is required. string
Chart version
HelmRepositoryId This property is required. string
helm repository id
chartName This property is required. String
Chart name
chartVersion This property is required. String
Chart version
helmRepositoryId This property is required. String
helm repository id
chartName This property is required. string
Chart name
chartVersion This property is required. string
Chart version
helmRepositoryId This property is required. string
helm repository id
chart_name This property is required. str
Chart name
chart_version This property is required. str
Chart version
helm_repository_id This property is required. str
helm repository id
chartName This property is required. String
Chart name
chartVersion This property is required. String
Chart version
helmRepositoryId This property is required. 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 This property is required. string
YAML file git repository branch
GitTokenId This property is required. string
The git token ID to be used
Paths This property is required. List<string>
YAML files git repository paths
Url This property is required. string
YAML file git repository URL
Branch This property is required. string
YAML file git repository branch
GitTokenId This property is required. string
The git token ID to be used
Paths This property is required. []string
YAML files git repository paths
Url This property is required. string
YAML file git repository URL
branch This property is required. String
YAML file git repository branch
gitTokenId This property is required. String
The git token ID to be used
paths This property is required. List<String>
YAML files git repository paths
url This property is required. String
YAML file git repository URL
branch This property is required. string
YAML file git repository branch
gitTokenId This property is required. string
The git token ID to be used
paths This property is required. string[]
YAML files git repository paths
url This property is required. string
YAML file git repository URL
branch This property is required. str
YAML file git repository branch
git_token_id This property is required. str
The git token ID to be used
paths This property is required. Sequence[str]
YAML files git repository paths
url This property is required. str
YAML file git repository URL
branch This property is required. String
YAML file git repository branch
gitTokenId This property is required. String
The git token ID to be used
paths This property is required. List<String>
YAML files git repository paths
url This property is required. String
YAML file git repository URL

GetHelmValuesOverrideFileRaw

Content This property is required. string
content of the file
Content This property is required. string
content of the file
content This property is required. String
content of the file
content This property is required. string
content of the file
content This property is required. str
content of the file
content This property is required. 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.