argocd.Provider
Explore with Pulumi AI
The provider type for the argocd package. By default, resources use package-wide configuration
settings, however an explicit Provider
instance may be created and passed during resource
construction to achieve fine-grained programmatic control over provider settings. See the
documentation for more information.
Create Provider Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Provider(name: string, args?: ProviderArgs, opts?: CustomResourceOptions);
@overload
def Provider(resource_name: str,
args: Optional[ProviderArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Provider(resource_name: str,
opts: Optional[ResourceOptions] = None,
auth_token: Optional[str] = None,
cert_file: Optional[str] = None,
client_cert_file: Optional[str] = None,
client_cert_key: Optional[str] = None,
config_path: Optional[str] = None,
context: Optional[str] = None,
core: Optional[bool] = None,
grpc_web: Optional[bool] = None,
grpc_web_root_path: Optional[str] = None,
headers: Optional[Sequence[str]] = None,
insecure: Optional[bool] = None,
kubernetes: Optional[ProviderKubernetesArgs] = None,
password: Optional[str] = None,
plain_text: Optional[bool] = None,
port_forward: Optional[bool] = None,
port_forward_with_namespace: Optional[str] = None,
server_addr: Optional[str] = None,
use_local_config: Optional[bool] = None,
user_agent: Optional[str] = None,
username: Optional[str] = None)
func NewProvider(ctx *Context, name string, args *ProviderArgs, opts ...ResourceOption) (*Provider, error)
public Provider(string name, ProviderArgs? args = null, CustomResourceOptions? opts = null)
public Provider(String name, ProviderArgs args)
public Provider(String name, ProviderArgs args, CustomResourceOptions options)
type: pulumi:providers:argocd
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProviderArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Provider 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 Provider resource accepts the following input properties:
- Auth
Token string - ArgoCD authentication token, takes precedence over
username
/password
. Can be set through theARGOCD_AUTH_TOKEN
environment variable. - Cert
File string - Additional root CA certificates file to add to the client TLS connection pool.
- Client
Cert stringFile - Client certificate.
- Client
Cert stringKey - Client certificate key.
- Config
Path string - Override the default config path of
$HOME/.config/argocd/config
. Only relevant whenuse_local_config
. Can be set through theARGOCD_CONFIG_PATH
environment variable. - Context string
- Context to choose when using a local ArgoCD config file. Only relevant when
use_local_config
. Can be set throughARGOCD_CONTEXT
environment variable. - Core bool
- Configure direct access using Kubernetes API server. Warning: this feature works by starting a local ArgoCD API
server that talks directly to the Kubernetes API using the current context in the default kubeconfig
(
~/.kube/config
). This behavior cannot be overridden using either environment variables or thekubernetes
block in the provider configuration at present). If the server fails to start (e.g. your kubeconfig is misconfigured) then the provider will fail as a result of theargocd
module forcing it to exit and no logs will be available to help you debug this. The error message will be similar to >The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
To debug this, you will need to login via the ArgoCD CLI usingargocd login --core
and then running an operation. E.g.argocd app list
. - Grpc
Web bool - Whether to use gRPC web proxy client. Useful if Argo CD server is behind proxy which does not support HTTP2.
- Grpc
Web stringRoot Path - Use the gRPC web proxy client and set the web root, e.g.
argo-cd
. Useful if the Argo CD server is behind a proxy at a non-root path. - Headers List<string>
- Additional headers to add to each request to the ArgoCD server.
- Insecure bool
- Whether to skip TLS server certificate. Can be set through the
ARGOCD_INSECURE
environment variable. - Kubernetes
Three14.
Argocd. Inputs. Provider Kubernetes - Kubernetes configuration overrides. Only relevant when
port_forward = true
orport_forward_with_namespace = "foo"
. The kubeconfig file that is used can be overridden using theKUBECONFIG
environment variable). - Password string
- Authentication password. Can be set through the
ARGOCD_AUTH_PASSWORD
environment variable. - Plain
Text bool - Whether to initiate an unencrypted connection to ArgoCD server.
- Port
Forward bool - Connect to a random argocd-server port using port forwarding.
- Port
Forward stringWith Namespace - Namespace name which should be used for port forwarding.
- Server
Addr string - ArgoCD server address with port. Can be set through the
ARGOCD_SERVER
environment variable. - Use
Local boolConfig - Use the authentication settings found in the local config file. Useful when you have previously logged in using SSO.
Conflicts with
auth_token
,username
andpassword
. - User
Agent string - User-Agent request header override.
- Username string
- Authentication username. Can be set through the
ARGOCD_AUTH_USERNAME
environment variable.
- Auth
Token string - ArgoCD authentication token, takes precedence over
username
/password
. Can be set through theARGOCD_AUTH_TOKEN
environment variable. - Cert
File string - Additional root CA certificates file to add to the client TLS connection pool.
- Client
Cert stringFile - Client certificate.
- Client
Cert stringKey - Client certificate key.
- Config
Path string - Override the default config path of
$HOME/.config/argocd/config
. Only relevant whenuse_local_config
. Can be set through theARGOCD_CONFIG_PATH
environment variable. - Context string
- Context to choose when using a local ArgoCD config file. Only relevant when
use_local_config
. Can be set throughARGOCD_CONTEXT
environment variable. - Core bool
- Configure direct access using Kubernetes API server. Warning: this feature works by starting a local ArgoCD API
server that talks directly to the Kubernetes API using the current context in the default kubeconfig
(
~/.kube/config
). This behavior cannot be overridden using either environment variables or thekubernetes
block in the provider configuration at present). If the server fails to start (e.g. your kubeconfig is misconfigured) then the provider will fail as a result of theargocd
module forcing it to exit and no logs will be available to help you debug this. The error message will be similar to >The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
To debug this, you will need to login via the ArgoCD CLI usingargocd login --core
and then running an operation. E.g.argocd app list
. - Grpc
Web bool - Whether to use gRPC web proxy client. Useful if Argo CD server is behind proxy which does not support HTTP2.
- Grpc
Web stringRoot Path - Use the gRPC web proxy client and set the web root, e.g.
argo-cd
. Useful if the Argo CD server is behind a proxy at a non-root path. - Headers []string
- Additional headers to add to each request to the ArgoCD server.
- Insecure bool
- Whether to skip TLS server certificate. Can be set through the
ARGOCD_INSECURE
environment variable. - Kubernetes
Provider
Kubernetes Args - Kubernetes configuration overrides. Only relevant when
port_forward = true
orport_forward_with_namespace = "foo"
. The kubeconfig file that is used can be overridden using theKUBECONFIG
environment variable). - Password string
- Authentication password. Can be set through the
ARGOCD_AUTH_PASSWORD
environment variable. - Plain
Text bool - Whether to initiate an unencrypted connection to ArgoCD server.
- Port
Forward bool - Connect to a random argocd-server port using port forwarding.
- Port
Forward stringWith Namespace - Namespace name which should be used for port forwarding.
- Server
Addr string - ArgoCD server address with port. Can be set through the
ARGOCD_SERVER
environment variable. - Use
Local boolConfig - Use the authentication settings found in the local config file. Useful when you have previously logged in using SSO.
Conflicts with
auth_token
,username
andpassword
. - User
Agent string - User-Agent request header override.
- Username string
- Authentication username. Can be set through the
ARGOCD_AUTH_USERNAME
environment variable.
- auth
Token String - ArgoCD authentication token, takes precedence over
username
/password
. Can be set through theARGOCD_AUTH_TOKEN
environment variable. - cert
File String - Additional root CA certificates file to add to the client TLS connection pool.
- client
Cert StringFile - Client certificate.
- client
Cert StringKey - Client certificate key.
- config
Path String - Override the default config path of
$HOME/.config/argocd/config
. Only relevant whenuse_local_config
. Can be set through theARGOCD_CONFIG_PATH
environment variable. - context String
- Context to choose when using a local ArgoCD config file. Only relevant when
use_local_config
. Can be set throughARGOCD_CONTEXT
environment variable. - core Boolean
- Configure direct access using Kubernetes API server. Warning: this feature works by starting a local ArgoCD API
server that talks directly to the Kubernetes API using the current context in the default kubeconfig
(
~/.kube/config
). This behavior cannot be overridden using either environment variables or thekubernetes
block in the provider configuration at present). If the server fails to start (e.g. your kubeconfig is misconfigured) then the provider will fail as a result of theargocd
module forcing it to exit and no logs will be available to help you debug this. The error message will be similar to >The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
To debug this, you will need to login via the ArgoCD CLI usingargocd login --core
and then running an operation. E.g.argocd app list
. - grpc
Web Boolean - Whether to use gRPC web proxy client. Useful if Argo CD server is behind proxy which does not support HTTP2.
- grpc
Web StringRoot Path - Use the gRPC web proxy client and set the web root, e.g.
argo-cd
. Useful if the Argo CD server is behind a proxy at a non-root path. - headers List<String>
- Additional headers to add to each request to the ArgoCD server.
- insecure Boolean
- Whether to skip TLS server certificate. Can be set through the
ARGOCD_INSECURE
environment variable. - kubernetes
Provider
Kubernetes - Kubernetes configuration overrides. Only relevant when
port_forward = true
orport_forward_with_namespace = "foo"
. The kubeconfig file that is used can be overridden using theKUBECONFIG
environment variable). - password String
- Authentication password. Can be set through the
ARGOCD_AUTH_PASSWORD
environment variable. - plain
Text Boolean - Whether to initiate an unencrypted connection to ArgoCD server.
- port
Forward Boolean - Connect to a random argocd-server port using port forwarding.
- port
Forward StringWith Namespace - Namespace name which should be used for port forwarding.
- server
Addr String - ArgoCD server address with port. Can be set through the
ARGOCD_SERVER
environment variable. - use
Local BooleanConfig - Use the authentication settings found in the local config file. Useful when you have previously logged in using SSO.
Conflicts with
auth_token
,username
andpassword
. - user
Agent String - User-Agent request header override.
- username String
- Authentication username. Can be set through the
ARGOCD_AUTH_USERNAME
environment variable.
- auth
Token string - ArgoCD authentication token, takes precedence over
username
/password
. Can be set through theARGOCD_AUTH_TOKEN
environment variable. - cert
File string - Additional root CA certificates file to add to the client TLS connection pool.
- client
Cert stringFile - Client certificate.
- client
Cert stringKey - Client certificate key.
- config
Path string - Override the default config path of
$HOME/.config/argocd/config
. Only relevant whenuse_local_config
. Can be set through theARGOCD_CONFIG_PATH
environment variable. - context string
- Context to choose when using a local ArgoCD config file. Only relevant when
use_local_config
. Can be set throughARGOCD_CONTEXT
environment variable. - core boolean
- Configure direct access using Kubernetes API server. Warning: this feature works by starting a local ArgoCD API
server that talks directly to the Kubernetes API using the current context in the default kubeconfig
(
~/.kube/config
). This behavior cannot be overridden using either environment variables or thekubernetes
block in the provider configuration at present). If the server fails to start (e.g. your kubeconfig is misconfigured) then the provider will fail as a result of theargocd
module forcing it to exit and no logs will be available to help you debug this. The error message will be similar to >The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
To debug this, you will need to login via the ArgoCD CLI usingargocd login --core
and then running an operation. E.g.argocd app list
. - grpc
Web boolean - Whether to use gRPC web proxy client. Useful if Argo CD server is behind proxy which does not support HTTP2.
- grpc
Web stringRoot Path - Use the gRPC web proxy client and set the web root, e.g.
argo-cd
. Useful if the Argo CD server is behind a proxy at a non-root path. - headers string[]
- Additional headers to add to each request to the ArgoCD server.
- insecure boolean
- Whether to skip TLS server certificate. Can be set through the
ARGOCD_INSECURE
environment variable. - kubernetes
Provider
Kubernetes - Kubernetes configuration overrides. Only relevant when
port_forward = true
orport_forward_with_namespace = "foo"
. The kubeconfig file that is used can be overridden using theKUBECONFIG
environment variable). - password string
- Authentication password. Can be set through the
ARGOCD_AUTH_PASSWORD
environment variable. - plain
Text boolean - Whether to initiate an unencrypted connection to ArgoCD server.
- port
Forward boolean - Connect to a random argocd-server port using port forwarding.
- port
Forward stringWith Namespace - Namespace name which should be used for port forwarding.
- server
Addr string - ArgoCD server address with port. Can be set through the
ARGOCD_SERVER
environment variable. - use
Local booleanConfig - Use the authentication settings found in the local config file. Useful when you have previously logged in using SSO.
Conflicts with
auth_token
,username
andpassword
. - user
Agent string - User-Agent request header override.
- username string
- Authentication username. Can be set through the
ARGOCD_AUTH_USERNAME
environment variable.
- auth_
token str - ArgoCD authentication token, takes precedence over
username
/password
. Can be set through theARGOCD_AUTH_TOKEN
environment variable. - cert_
file str - Additional root CA certificates file to add to the client TLS connection pool.
- client_
cert_ strfile - Client certificate.
- client_
cert_ strkey - Client certificate key.
- config_
path str - Override the default config path of
$HOME/.config/argocd/config
. Only relevant whenuse_local_config
. Can be set through theARGOCD_CONFIG_PATH
environment variable. - context str
- Context to choose when using a local ArgoCD config file. Only relevant when
use_local_config
. Can be set throughARGOCD_CONTEXT
environment variable. - core bool
- Configure direct access using Kubernetes API server. Warning: this feature works by starting a local ArgoCD API
server that talks directly to the Kubernetes API using the current context in the default kubeconfig
(
~/.kube/config
). This behavior cannot be overridden using either environment variables or thekubernetes
block in the provider configuration at present). If the server fails to start (e.g. your kubeconfig is misconfigured) then the provider will fail as a result of theargocd
module forcing it to exit and no logs will be available to help you debug this. The error message will be similar to >The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
To debug this, you will need to login via the ArgoCD CLI usingargocd login --core
and then running an operation. E.g.argocd app list
. - grpc_
web bool - Whether to use gRPC web proxy client. Useful if Argo CD server is behind proxy which does not support HTTP2.
- grpc_
web_ strroot_ path - Use the gRPC web proxy client and set the web root, e.g.
argo-cd
. Useful if the Argo CD server is behind a proxy at a non-root path. - headers Sequence[str]
- Additional headers to add to each request to the ArgoCD server.
- insecure bool
- Whether to skip TLS server certificate. Can be set through the
ARGOCD_INSECURE
environment variable. - kubernetes
Provider
Kubernetes Args - Kubernetes configuration overrides. Only relevant when
port_forward = true
orport_forward_with_namespace = "foo"
. The kubeconfig file that is used can be overridden using theKUBECONFIG
environment variable). - password str
- Authentication password. Can be set through the
ARGOCD_AUTH_PASSWORD
environment variable. - plain_
text bool - Whether to initiate an unencrypted connection to ArgoCD server.
- port_
forward bool - Connect to a random argocd-server port using port forwarding.
- port_
forward_ strwith_ namespace - Namespace name which should be used for port forwarding.
- server_
addr str - ArgoCD server address with port. Can be set through the
ARGOCD_SERVER
environment variable. - use_
local_ boolconfig - Use the authentication settings found in the local config file. Useful when you have previously logged in using SSO.
Conflicts with
auth_token
,username
andpassword
. - user_
agent str - User-Agent request header override.
- username str
- Authentication username. Can be set through the
ARGOCD_AUTH_USERNAME
environment variable.
- auth
Token String - ArgoCD authentication token, takes precedence over
username
/password
. Can be set through theARGOCD_AUTH_TOKEN
environment variable. - cert
File String - Additional root CA certificates file to add to the client TLS connection pool.
- client
Cert StringFile - Client certificate.
- client
Cert StringKey - Client certificate key.
- config
Path String - Override the default config path of
$HOME/.config/argocd/config
. Only relevant whenuse_local_config
. Can be set through theARGOCD_CONFIG_PATH
environment variable. - context String
- Context to choose when using a local ArgoCD config file. Only relevant when
use_local_config
. Can be set throughARGOCD_CONTEXT
environment variable. - core Boolean
- Configure direct access using Kubernetes API server. Warning: this feature works by starting a local ArgoCD API
server that talks directly to the Kubernetes API using the current context in the default kubeconfig
(
~/.kube/config
). This behavior cannot be overridden using either environment variables or thekubernetes
block in the provider configuration at present). If the server fails to start (e.g. your kubeconfig is misconfigured) then the provider will fail as a result of theargocd
module forcing it to exit and no logs will be available to help you debug this. The error message will be similar to >The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ReadResource call. The plugin logs may contain more details.
To debug this, you will need to login via the ArgoCD CLI usingargocd login --core
and then running an operation. E.g.argocd app list
. - grpc
Web Boolean - Whether to use gRPC web proxy client. Useful if Argo CD server is behind proxy which does not support HTTP2.
- grpc
Web StringRoot Path - Use the gRPC web proxy client and set the web root, e.g.
argo-cd
. Useful if the Argo CD server is behind a proxy at a non-root path. - headers List<String>
- Additional headers to add to each request to the ArgoCD server.
- insecure Boolean
- Whether to skip TLS server certificate. Can be set through the
ARGOCD_INSECURE
environment variable. - kubernetes Property Map
- Kubernetes configuration overrides. Only relevant when
port_forward = true
orport_forward_with_namespace = "foo"
. The kubeconfig file that is used can be overridden using theKUBECONFIG
environment variable). - password String
- Authentication password. Can be set through the
ARGOCD_AUTH_PASSWORD
environment variable. - plain
Text Boolean - Whether to initiate an unencrypted connection to ArgoCD server.
- port
Forward Boolean - Connect to a random argocd-server port using port forwarding.
- port
Forward StringWith Namespace - Namespace name which should be used for port forwarding.
- server
Addr String - ArgoCD server address with port. Can be set through the
ARGOCD_SERVER
environment variable. - use
Local BooleanConfig - Use the authentication settings found in the local config file. Useful when you have previously logged in using SSO.
Conflicts with
auth_token
,username
andpassword
. - user
Agent String - User-Agent request header override.
- username String
- Authentication username. Can be set through the
ARGOCD_AUTH_USERNAME
environment variable.
Outputs
All input properties are implicitly available as output properties. Additionally, the Provider resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
ProviderKubernetes, ProviderKubernetesArgs
- Client
Certificate string - PEM-encoded client certificate for TLS authentication. Can be sourced from
KUBE_CLIENT_CERT_DATA
. - Client
Key string - PEM-encoded client certificate key for TLS authentication. Can be sourced from
KUBE_CLIENT_KEY_DATA
. - Cluster
Ca stringCertificate - PEM-encoded root certificates bundle for TLS authentication. Can be sourced from
KUBE_CLUSTER_CA_CERT_DATA
. - Config
Context string - Context to choose from the config file. Can be sourced from
KUBE_CTX
. - Config
Context stringAuth Info - Config
Context stringCluster - Exec
Three14.
Argocd. Inputs. Provider Kubernetes Exec - Configuration block to use an exec-based credential plugin, e.g. call an external command to receive user credentials.
- Host string
- The hostname (in form of URI) of the Kubernetes API. Can be sourced from
KUBE_HOST
. - Insecure bool
- Whether server should be accessed without verifying the TLS certificate. Can be sourced from
KUBE_INSECURE
. - Password string
- The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_PASSWORD
. - Token string
- Token to authenticate an service account. Can be sourced from
KUBE_TOKEN
. - Username string
- The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_USER
.
- Client
Certificate string - PEM-encoded client certificate for TLS authentication. Can be sourced from
KUBE_CLIENT_CERT_DATA
. - Client
Key string - PEM-encoded client certificate key for TLS authentication. Can be sourced from
KUBE_CLIENT_KEY_DATA
. - Cluster
Ca stringCertificate - PEM-encoded root certificates bundle for TLS authentication. Can be sourced from
KUBE_CLUSTER_CA_CERT_DATA
. - Config
Context string - Context to choose from the config file. Can be sourced from
KUBE_CTX
. - Config
Context stringAuth Info - Config
Context stringCluster - Exec
Provider
Kubernetes Exec - Configuration block to use an exec-based credential plugin, e.g. call an external command to receive user credentials.
- Host string
- The hostname (in form of URI) of the Kubernetes API. Can be sourced from
KUBE_HOST
. - Insecure bool
- Whether server should be accessed without verifying the TLS certificate. Can be sourced from
KUBE_INSECURE
. - Password string
- The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_PASSWORD
. - Token string
- Token to authenticate an service account. Can be sourced from
KUBE_TOKEN
. - Username string
- The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_USER
.
- client
Certificate String - PEM-encoded client certificate for TLS authentication. Can be sourced from
KUBE_CLIENT_CERT_DATA
. - client
Key String - PEM-encoded client certificate key for TLS authentication. Can be sourced from
KUBE_CLIENT_KEY_DATA
. - cluster
Ca StringCertificate - PEM-encoded root certificates bundle for TLS authentication. Can be sourced from
KUBE_CLUSTER_CA_CERT_DATA
. - config
Context String - Context to choose from the config file. Can be sourced from
KUBE_CTX
. - config
Context StringAuth Info - config
Context StringCluster - exec
Provider
Kubernetes Exec - Configuration block to use an exec-based credential plugin, e.g. call an external command to receive user credentials.
- host String
- The hostname (in form of URI) of the Kubernetes API. Can be sourced from
KUBE_HOST
. - insecure Boolean
- Whether server should be accessed without verifying the TLS certificate. Can be sourced from
KUBE_INSECURE
. - password String
- The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_PASSWORD
. - token String
- Token to authenticate an service account. Can be sourced from
KUBE_TOKEN
. - username String
- The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_USER
.
- client
Certificate string - PEM-encoded client certificate for TLS authentication. Can be sourced from
KUBE_CLIENT_CERT_DATA
. - client
Key string - PEM-encoded client certificate key for TLS authentication. Can be sourced from
KUBE_CLIENT_KEY_DATA
. - cluster
Ca stringCertificate - PEM-encoded root certificates bundle for TLS authentication. Can be sourced from
KUBE_CLUSTER_CA_CERT_DATA
. - config
Context string - Context to choose from the config file. Can be sourced from
KUBE_CTX
. - config
Context stringAuth Info - config
Context stringCluster - exec
Provider
Kubernetes Exec - Configuration block to use an exec-based credential plugin, e.g. call an external command to receive user credentials.
- host string
- The hostname (in form of URI) of the Kubernetes API. Can be sourced from
KUBE_HOST
. - insecure boolean
- Whether server should be accessed without verifying the TLS certificate. Can be sourced from
KUBE_INSECURE
. - password string
- The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_PASSWORD
. - token string
- Token to authenticate an service account. Can be sourced from
KUBE_TOKEN
. - username string
- The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_USER
.
- client_
certificate str - PEM-encoded client certificate for TLS authentication. Can be sourced from
KUBE_CLIENT_CERT_DATA
. - client_
key str - PEM-encoded client certificate key for TLS authentication. Can be sourced from
KUBE_CLIENT_KEY_DATA
. - cluster_
ca_ strcertificate - PEM-encoded root certificates bundle for TLS authentication. Can be sourced from
KUBE_CLUSTER_CA_CERT_DATA
. - config_
context str - Context to choose from the config file. Can be sourced from
KUBE_CTX
. - config_
context_ strauth_ info - config_
context_ strcluster - exec_
Provider
Kubernetes Exec - Configuration block to use an exec-based credential plugin, e.g. call an external command to receive user credentials.
- host str
- The hostname (in form of URI) of the Kubernetes API. Can be sourced from
KUBE_HOST
. - insecure bool
- Whether server should be accessed without verifying the TLS certificate. Can be sourced from
KUBE_INSECURE
. - password str
- The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_PASSWORD
. - token str
- Token to authenticate an service account. Can be sourced from
KUBE_TOKEN
. - username str
- The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_USER
.
- client
Certificate String - PEM-encoded client certificate for TLS authentication. Can be sourced from
KUBE_CLIENT_CERT_DATA
. - client
Key String - PEM-encoded client certificate key for TLS authentication. Can be sourced from
KUBE_CLIENT_KEY_DATA
. - cluster
Ca StringCertificate - PEM-encoded root certificates bundle for TLS authentication. Can be sourced from
KUBE_CLUSTER_CA_CERT_DATA
. - config
Context String - Context to choose from the config file. Can be sourced from
KUBE_CTX
. - config
Context StringAuth Info - config
Context StringCluster - exec Property Map
- Configuration block to use an exec-based credential plugin, e.g. call an external command to receive user credentials.
- host String
- The hostname (in form of URI) of the Kubernetes API. Can be sourced from
KUBE_HOST
. - insecure Boolean
- Whether server should be accessed without verifying the TLS certificate. Can be sourced from
KUBE_INSECURE
. - password String
- The password to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_PASSWORD
. - token String
- Token to authenticate an service account. Can be sourced from
KUBE_TOKEN
. - username String
- The username to use for HTTP basic authentication when accessing the Kubernetes API. Can be sourced from
KUBE_USER
.
ProviderKubernetesExec, ProviderKubernetesExecArgs
- Api
Version string - API version to use when decoding the ExecCredentials resource, e.g.
client.authentication.k8s.io/v1beta1
. - Command string
- Command to execute.
- Args List<string>
- Map of environment variables to set when executing the plugin.
- Env Dictionary<string, string>
- List of arguments to pass when executing the plugin.
- Api
Version string - API version to use when decoding the ExecCredentials resource, e.g.
client.authentication.k8s.io/v1beta1
. - Command string
- Command to execute.
- Args []string
- Map of environment variables to set when executing the plugin.
- Env map[string]string
- List of arguments to pass when executing the plugin.
- api
Version String - API version to use when decoding the ExecCredentials resource, e.g.
client.authentication.k8s.io/v1beta1
. - command String
- Command to execute.
- args List<String>
- Map of environment variables to set when executing the plugin.
- env Map<String,String>
- List of arguments to pass when executing the plugin.
- api
Version string - API version to use when decoding the ExecCredentials resource, e.g.
client.authentication.k8s.io/v1beta1
. - command string
- Command to execute.
- args string[]
- Map of environment variables to set when executing the plugin.
- env {[key: string]: string}
- List of arguments to pass when executing the plugin.
- api_
version str - API version to use when decoding the ExecCredentials resource, e.g.
client.authentication.k8s.io/v1beta1
. - command str
- Command to execute.
- args Sequence[str]
- Map of environment variables to set when executing the plugin.
- env Mapping[str, str]
- List of arguments to pass when executing the plugin.
- api
Version String - API version to use when decoding the ExecCredentials resource, e.g.
client.authentication.k8s.io/v1beta1
. - command String
- Command to execute.
- args List<String>
- Map of environment variables to set when executing the plugin.
- env Map<String>
- List of arguments to pass when executing the plugin.
Package Details
- Repository
- argocd Three141/pulumi-argocd
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
argocd
Terraform Provider.