We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4711587 commit 9c43e2dCopy full SHA for 9c43e2d
docs/resources/cluster.md
@@ -12,7 +12,10 @@ resource "argocd_cluster" "kubernetes" {
12
bearer_token = "eyJhbGciOiJSUzI..."
13
14
tls_client_config {
15
- ca_data = base64encode(file("path/to/ca.pem"))
+ ca_data = file("path/to/ca.pem")
16
+ // ca_data = "-----BEGIN CERTIFICATE-----\nfoo\nbar\n-----END CERTIFICATE-----"
17
+ // ca_data = base64decode("LS0tLS1CRUdJTiBDRVJUSUZ...")
18
+
19
// insecure = true
20
}
21
0 commit comments