1. Packages
  2. Koyeb
  3. API Docs
  4. Secret
Koyeb v0.1.11 published on Monday, Dec 9, 2024 by Koyeb

koyeb.Secret

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as koyeb from "@koyeb/pulumi-koyeb";

const simple_secret = new koyeb.Secret("simple-secret", {
    name: "secret-name",
    value: "secret-value",
});
Copy
import pulumi
import pulumi_koyeb as koyeb

simple_secret = koyeb.Secret("simple-secret",
    name="secret-name",
    value="secret-value")
Copy
package main

import (
	"github.com/koyeb/pulumi-koyeb/sdk/go/koyeb"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := koyeb.NewSecret(ctx, "simple-secret", &koyeb.SecretArgs{
			Name:  pulumi.String("secret-name"),
			Value: pulumi.String("secret-value"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Koyeb = Pulumi.Koyeb;

return await Deployment.RunAsync(() => 
{
    var simple_secret = new Koyeb.Secret("simple-secret", new()
    {
        Name = "secret-name",
        Value = "secret-value",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.koyeb.Secret;
import com.pulumi.koyeb.SecretArgs;
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) {
        var simple_secret = new Secret("simple-secret", SecretArgs.builder()
            .name("secret-name")
            .value("secret-value")
            .build());

    }
}
Copy
resources:
  simple-secret:
    type: koyeb:Secret
    properties:
      name: secret-name
      value: secret-value
Copy

Create Secret Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Secret(name: string, args?: SecretArgs, opts?: CustomResourceOptions);
@overload
def Secret(resource_name: str,
           args: Optional[SecretArgs] = None,
           opts: Optional[ResourceOptions] = None)

@overload
def Secret(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           azure_container_registry: Optional[SecretAzureContainerRegistryArgs] = None,
           digital_ocean_container_registry: Optional[SecretDigitalOceanContainerRegistryArgs] = None,
           docker_hub_registry: Optional[SecretDockerHubRegistryArgs] = None,
           github_registry: Optional[SecretGithubRegistryArgs] = None,
           gitlab_registry: Optional[SecretGitlabRegistryArgs] = None,
           name: Optional[str] = None,
           private_registry: Optional[SecretPrivateRegistryArgs] = None,
           type: Optional[str] = None,
           value: Optional[str] = None)
func NewSecret(ctx *Context, name string, args *SecretArgs, opts ...ResourceOption) (*Secret, error)
public Secret(string name, SecretArgs? args = null, CustomResourceOptions? opts = null)
public Secret(String name, SecretArgs args)
public Secret(String name, SecretArgs args, CustomResourceOptions options)
type: koyeb:Secret
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args SecretArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args SecretArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args SecretArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args SecretArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SecretArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var secretResource = new Koyeb.Secret("secretResource", new()
{
    AzureContainerRegistry = new Koyeb.Inputs.SecretAzureContainerRegistryArgs
    {
        Password = "string",
        RegistryName = "string",
        Username = "string",
    },
    DigitalOceanContainerRegistry = new Koyeb.Inputs.SecretDigitalOceanContainerRegistryArgs
    {
        Password = "string",
        Username = "string",
    },
    DockerHubRegistry = new Koyeb.Inputs.SecretDockerHubRegistryArgs
    {
        Password = "string",
        Username = "string",
    },
    GithubRegistry = new Koyeb.Inputs.SecretGithubRegistryArgs
    {
        Password = "string",
        Username = "string",
    },
    GitlabRegistry = new Koyeb.Inputs.SecretGitlabRegistryArgs
    {
        Password = "string",
        Username = "string",
    },
    Name = "string",
    PrivateRegistry = new Koyeb.Inputs.SecretPrivateRegistryArgs
    {
        Password = "string",
        Url = "string",
        Username = "string",
    },
    Type = "string",
    Value = "string",
});
Copy
example, err := koyeb.NewSecret(ctx, "secretResource", &koyeb.SecretArgs{
	AzureContainerRegistry: &koyeb.SecretAzureContainerRegistryArgs{
		Password:     pulumi.String("string"),
		RegistryName: pulumi.String("string"),
		Username:     pulumi.String("string"),
	},
	DigitalOceanContainerRegistry: &koyeb.SecretDigitalOceanContainerRegistryArgs{
		Password: pulumi.String("string"),
		Username: pulumi.String("string"),
	},
	DockerHubRegistry: &koyeb.SecretDockerHubRegistryArgs{
		Password: pulumi.String("string"),
		Username: pulumi.String("string"),
	},
	GithubRegistry: &koyeb.SecretGithubRegistryArgs{
		Password: pulumi.String("string"),
		Username: pulumi.String("string"),
	},
	GitlabRegistry: &koyeb.SecretGitlabRegistryArgs{
		Password: pulumi.String("string"),
		Username: pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	PrivateRegistry: &koyeb.SecretPrivateRegistryArgs{
		Password: pulumi.String("string"),
		Url:      pulumi.String("string"),
		Username: pulumi.String("string"),
	},
	Type:  pulumi.String("string"),
	Value: pulumi.String("string"),
})
Copy
var secretResource = new Secret("secretResource", SecretArgs.builder()
    .azureContainerRegistry(SecretAzureContainerRegistryArgs.builder()
        .password("string")
        .registryName("string")
        .username("string")
        .build())
    .digitalOceanContainerRegistry(SecretDigitalOceanContainerRegistryArgs.builder()
        .password("string")
        .username("string")
        .build())
    .dockerHubRegistry(SecretDockerHubRegistryArgs.builder()
        .password("string")
        .username("string")
        .build())
    .githubRegistry(SecretGithubRegistryArgs.builder()
        .password("string")
        .username("string")
        .build())
    .gitlabRegistry(SecretGitlabRegistryArgs.builder()
        .password("string")
        .username("string")
        .build())
    .name("string")
    .privateRegistry(SecretPrivateRegistryArgs.builder()
        .password("string")
        .url("string")
        .username("string")
        .build())
    .type("string")
    .value("string")
    .build());
Copy
secret_resource = koyeb.Secret("secretResource",
    azure_container_registry={
        "password": "string",
        "registry_name": "string",
        "username": "string",
    },
    digital_ocean_container_registry={
        "password": "string",
        "username": "string",
    },
    docker_hub_registry={
        "password": "string",
        "username": "string",
    },
    github_registry={
        "password": "string",
        "username": "string",
    },
    gitlab_registry={
        "password": "string",
        "username": "string",
    },
    name="string",
    private_registry={
        "password": "string",
        "url": "string",
        "username": "string",
    },
    type="string",
    value="string")
Copy
const secretResource = new koyeb.Secret("secretResource", {
    azureContainerRegistry: {
        password: "string",
        registryName: "string",
        username: "string",
    },
    digitalOceanContainerRegistry: {
        password: "string",
        username: "string",
    },
    dockerHubRegistry: {
        password: "string",
        username: "string",
    },
    githubRegistry: {
        password: "string",
        username: "string",
    },
    gitlabRegistry: {
        password: "string",
        username: "string",
    },
    name: "string",
    privateRegistry: {
        password: "string",
        url: "string",
        username: "string",
    },
    type: "string",
    value: "string",
});
Copy
type: koyeb:Secret
properties:
    azureContainerRegistry:
        password: string
        registryName: string
        username: string
    digitalOceanContainerRegistry:
        password: string
        username: string
    dockerHubRegistry:
        password: string
        username: string
    githubRegistry:
        password: string
        username: string
    gitlabRegistry:
        password: string
        username: string
    name: string
    privateRegistry:
        password: string
        url: string
        username: string
    type: string
    value: string
Copy

Secret Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Secret resource accepts the following input properties:

AzureContainerRegistry SecretAzureContainerRegistry
The azurecontainerregistry configuration to use
DigitalOceanContainerRegistry SecretDigitalOceanContainerRegistry
The digitaloceancontainer*registry configuration to use
DockerHubRegistry SecretDockerHubRegistry
The dockerhubregistry configuration to use
GithubRegistry SecretGithubRegistry
The github*registry configuration to use
GitlabRegistry SecretGitlabRegistry
The gitlab*registry configuration to use
Name Changes to this property will trigger replacement. string
The secret name
PrivateRegistry SecretPrivateRegistry
The private*registry configuration to use
Type Changes to this property will trigger replacement. string
The secret type
Value string
The secret value
AzureContainerRegistry SecretAzureContainerRegistryArgs
The azurecontainerregistry configuration to use
DigitalOceanContainerRegistry SecretDigitalOceanContainerRegistryArgs
The digitaloceancontainer*registry configuration to use
DockerHubRegistry SecretDockerHubRegistryArgs
The dockerhubregistry configuration to use
GithubRegistry SecretGithubRegistryArgs
The github*registry configuration to use
GitlabRegistry SecretGitlabRegistryArgs
The gitlab*registry configuration to use
Name Changes to this property will trigger replacement. string
The secret name
PrivateRegistry SecretPrivateRegistryArgs
The private*registry configuration to use
Type Changes to this property will trigger replacement. string
The secret type
Value string
The secret value
azureContainerRegistry SecretAzureContainerRegistry
The azurecontainerregistry configuration to use
digitalOceanContainerRegistry SecretDigitalOceanContainerRegistry
The digitaloceancontainer*registry configuration to use
dockerHubRegistry SecretDockerHubRegistry
The dockerhubregistry configuration to use
githubRegistry SecretGithubRegistry
The github*registry configuration to use
gitlabRegistry SecretGitlabRegistry
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. String
The secret name
privateRegistry SecretPrivateRegistry
The private*registry configuration to use
type Changes to this property will trigger replacement. String
The secret type
value String
The secret value
azureContainerRegistry SecretAzureContainerRegistry
The azurecontainerregistry configuration to use
digitalOceanContainerRegistry SecretDigitalOceanContainerRegistry
The digitaloceancontainer*registry configuration to use
dockerHubRegistry SecretDockerHubRegistry
The dockerhubregistry configuration to use
githubRegistry SecretGithubRegistry
The github*registry configuration to use
gitlabRegistry SecretGitlabRegistry
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. string
The secret name
privateRegistry SecretPrivateRegistry
The private*registry configuration to use
type Changes to this property will trigger replacement. string
The secret type
value string
The secret value
azure_container_registry SecretAzureContainerRegistryArgs
The azurecontainerregistry configuration to use
digital_ocean_container_registry SecretDigitalOceanContainerRegistryArgs
The digitaloceancontainer*registry configuration to use
docker_hub_registry SecretDockerHubRegistryArgs
The dockerhubregistry configuration to use
github_registry SecretGithubRegistryArgs
The github*registry configuration to use
gitlab_registry SecretGitlabRegistryArgs
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. str
The secret name
private_registry SecretPrivateRegistryArgs
The private*registry configuration to use
type Changes to this property will trigger replacement. str
The secret type
value str
The secret value
azureContainerRegistry Property Map
The azurecontainerregistry configuration to use
digitalOceanContainerRegistry Property Map
The digitaloceancontainer*registry configuration to use
dockerHubRegistry Property Map
The dockerhubregistry configuration to use
githubRegistry Property Map
The github*registry configuration to use
gitlabRegistry Property Map
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. String
The secret name
privateRegistry Property Map
The private*registry configuration to use
type Changes to this property will trigger replacement. String
The secret type
value String
The secret value

Outputs

All input properties are implicitly available as output properties. Additionally, the Secret resource produces the following output properties:

CreatedAt string
The date and time of when the secret was created
Id string
The provider-assigned unique ID for this managed resource.
OrganizationId string
The organization ID owning the secret
UpdatedAt string
The date and time of when the secret was last updated
CreatedAt string
The date and time of when the secret was created
Id string
The provider-assigned unique ID for this managed resource.
OrganizationId string
The organization ID owning the secret
UpdatedAt string
The date and time of when the secret was last updated
createdAt String
The date and time of when the secret was created
id String
The provider-assigned unique ID for this managed resource.
organizationId String
The organization ID owning the secret
updatedAt String
The date and time of when the secret was last updated
createdAt string
The date and time of when the secret was created
id string
The provider-assigned unique ID for this managed resource.
organizationId string
The organization ID owning the secret
updatedAt string
The date and time of when the secret was last updated
created_at str
The date and time of when the secret was created
id str
The provider-assigned unique ID for this managed resource.
organization_id str
The organization ID owning the secret
updated_at str
The date and time of when the secret was last updated
createdAt String
The date and time of when the secret was created
id String
The provider-assigned unique ID for this managed resource.
organizationId String
The organization ID owning the secret
updatedAt String
The date and time of when the secret was last updated

Look up Existing Secret Resource

Get an existing Secret resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: SecretState, opts?: CustomResourceOptions): Secret
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        azure_container_registry: Optional[SecretAzureContainerRegistryArgs] = None,
        created_at: Optional[str] = None,
        digital_ocean_container_registry: Optional[SecretDigitalOceanContainerRegistryArgs] = None,
        docker_hub_registry: Optional[SecretDockerHubRegistryArgs] = None,
        github_registry: Optional[SecretGithubRegistryArgs] = None,
        gitlab_registry: Optional[SecretGitlabRegistryArgs] = None,
        name: Optional[str] = None,
        organization_id: Optional[str] = None,
        private_registry: Optional[SecretPrivateRegistryArgs] = None,
        type: Optional[str] = None,
        updated_at: Optional[str] = None,
        value: Optional[str] = None) -> Secret
func GetSecret(ctx *Context, name string, id IDInput, state *SecretState, opts ...ResourceOption) (*Secret, error)
public static Secret Get(string name, Input<string> id, SecretState? state, CustomResourceOptions? opts = null)
public static Secret get(String name, Output<String> id, SecretState state, CustomResourceOptions options)
resources:  _:    type: koyeb:Secret    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AzureContainerRegistry SecretAzureContainerRegistry
The azurecontainerregistry configuration to use
CreatedAt string
The date and time of when the secret was created
DigitalOceanContainerRegistry SecretDigitalOceanContainerRegistry
The digitaloceancontainer*registry configuration to use
DockerHubRegistry SecretDockerHubRegistry
The dockerhubregistry configuration to use
GithubRegistry SecretGithubRegistry
The github*registry configuration to use
GitlabRegistry SecretGitlabRegistry
The gitlab*registry configuration to use
Name Changes to this property will trigger replacement. string
The secret name
OrganizationId string
The organization ID owning the secret
PrivateRegistry SecretPrivateRegistry
The private*registry configuration to use
Type Changes to this property will trigger replacement. string
The secret type
UpdatedAt string
The date and time of when the secret was last updated
Value string
The secret value
AzureContainerRegistry SecretAzureContainerRegistryArgs
The azurecontainerregistry configuration to use
CreatedAt string
The date and time of when the secret was created
DigitalOceanContainerRegistry SecretDigitalOceanContainerRegistryArgs
The digitaloceancontainer*registry configuration to use
DockerHubRegistry SecretDockerHubRegistryArgs
The dockerhubregistry configuration to use
GithubRegistry SecretGithubRegistryArgs
The github*registry configuration to use
GitlabRegistry SecretGitlabRegistryArgs
The gitlab*registry configuration to use
Name Changes to this property will trigger replacement. string
The secret name
OrganizationId string
The organization ID owning the secret
PrivateRegistry SecretPrivateRegistryArgs
The private*registry configuration to use
Type Changes to this property will trigger replacement. string
The secret type
UpdatedAt string
The date and time of when the secret was last updated
Value string
The secret value
azureContainerRegistry SecretAzureContainerRegistry
The azurecontainerregistry configuration to use
createdAt String
The date and time of when the secret was created
digitalOceanContainerRegistry SecretDigitalOceanContainerRegistry
The digitaloceancontainer*registry configuration to use
dockerHubRegistry SecretDockerHubRegistry
The dockerhubregistry configuration to use
githubRegistry SecretGithubRegistry
The github*registry configuration to use
gitlabRegistry SecretGitlabRegistry
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. String
The secret name
organizationId String
The organization ID owning the secret
privateRegistry SecretPrivateRegistry
The private*registry configuration to use
type Changes to this property will trigger replacement. String
The secret type
updatedAt String
The date and time of when the secret was last updated
value String
The secret value
azureContainerRegistry SecretAzureContainerRegistry
The azurecontainerregistry configuration to use
createdAt string
The date and time of when the secret was created
digitalOceanContainerRegistry SecretDigitalOceanContainerRegistry
The digitaloceancontainer*registry configuration to use
dockerHubRegistry SecretDockerHubRegistry
The dockerhubregistry configuration to use
githubRegistry SecretGithubRegistry
The github*registry configuration to use
gitlabRegistry SecretGitlabRegistry
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. string
The secret name
organizationId string
The organization ID owning the secret
privateRegistry SecretPrivateRegistry
The private*registry configuration to use
type Changes to this property will trigger replacement. string
The secret type
updatedAt string
The date and time of when the secret was last updated
value string
The secret value
azure_container_registry SecretAzureContainerRegistryArgs
The azurecontainerregistry configuration to use
created_at str
The date and time of when the secret was created
digital_ocean_container_registry SecretDigitalOceanContainerRegistryArgs
The digitaloceancontainer*registry configuration to use
docker_hub_registry SecretDockerHubRegistryArgs
The dockerhubregistry configuration to use
github_registry SecretGithubRegistryArgs
The github*registry configuration to use
gitlab_registry SecretGitlabRegistryArgs
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. str
The secret name
organization_id str
The organization ID owning the secret
private_registry SecretPrivateRegistryArgs
The private*registry configuration to use
type Changes to this property will trigger replacement. str
The secret type
updated_at str
The date and time of when the secret was last updated
value str
The secret value
azureContainerRegistry Property Map
The azurecontainerregistry configuration to use
createdAt String
The date and time of when the secret was created
digitalOceanContainerRegistry Property Map
The digitaloceancontainer*registry configuration to use
dockerHubRegistry Property Map
The dockerhubregistry configuration to use
githubRegistry Property Map
The github*registry configuration to use
gitlabRegistry Property Map
The gitlab*registry configuration to use
name Changes to this property will trigger replacement. String
The secret name
organizationId String
The organization ID owning the secret
privateRegistry Property Map
The private*registry configuration to use
type Changes to this property will trigger replacement. String
The secret type
updatedAt String
The date and time of when the secret was last updated
value String
The secret value

Supporting Types

SecretAzureContainerRegistry
, SecretAzureContainerRegistryArgs

Password This property is required. string
The registry password
RegistryName This property is required. string
The registry name
Username This property is required. string
The registry username
Password This property is required. string
The registry password
RegistryName This property is required. string
The registry name
Username This property is required. string
The registry username
password This property is required. String
The registry password
registryName This property is required. String
The registry name
username This property is required. String
The registry username
password This property is required. string
The registry password
registryName This property is required. string
The registry name
username This property is required. string
The registry username
password This property is required. str
The registry password
registry_name This property is required. str
The registry name
username This property is required. str
The registry username
password This property is required. String
The registry password
registryName This property is required. String
The registry name
username This property is required. String
The registry username

SecretDigitalOceanContainerRegistry
, SecretDigitalOceanContainerRegistryArgs

Password This property is required. string
The registry password
Username This property is required. string
The registry username
Password This property is required. string
The registry password
Username This property is required. string
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username
password This property is required. string
The registry password
username This property is required. string
The registry username
password This property is required. str
The registry password
username This property is required. str
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username

SecretDockerHubRegistry
, SecretDockerHubRegistryArgs

Password This property is required. string
The registry password
Username This property is required. string
The registry username
Password This property is required. string
The registry password
Username This property is required. string
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username
password This property is required. string
The registry password
username This property is required. string
The registry username
password This property is required. str
The registry password
username This property is required. str
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username

SecretGithubRegistry
, SecretGithubRegistryArgs

Password This property is required. string
The registry password
Username This property is required. string
The registry username
Password This property is required. string
The registry password
Username This property is required. string
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username
password This property is required. string
The registry password
username This property is required. string
The registry username
password This property is required. str
The registry password
username This property is required. str
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username

SecretGitlabRegistry
, SecretGitlabRegistryArgs

Password This property is required. string
The registry password
Username This property is required. string
The registry username
Password This property is required. string
The registry password
Username This property is required. string
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username
password This property is required. string
The registry password
username This property is required. string
The registry username
password This property is required. str
The registry password
username This property is required. str
The registry username
password This property is required. String
The registry password
username This property is required. String
The registry username

SecretPrivateRegistry
, SecretPrivateRegistryArgs

Password This property is required. string
The registry password
Url This property is required. string
The registry URL
Username This property is required. string
The registry username
Password This property is required. string
The registry password
Url This property is required. string
The registry URL
Username This property is required. string
The registry username
password This property is required. String
The registry password
url This property is required. String
The registry URL
username This property is required. String
The registry username
password This property is required. string
The registry password
url This property is required. string
The registry URL
username This property is required. string
The registry username
password This property is required. str
The registry password
url This property is required. str
The registry URL
username This property is required. str
The registry username
password This property is required. String
The registry password
url This property is required. String
The registry URL
username This property is required. String
The registry username

Package Details

Repository
koyeb koyeb/pulumi-koyeb
License
Apache-2.0
Notes
This Pulumi package is based on the koyeb Terraform Provider.