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 a47e56b commit 3a64480Copy full SHA for 3a64480
infrastructure/terraform/modules/cloudflare/main.tf
@@ -11,8 +11,8 @@ resource "random_password" "tunnel_secret" {
11
length = 64
12
}
13
14
-# resource "cloudflare_zero_trust_tunnel_cloudflared" "k8s-tunnel" {
15
-# account_id = var.cloudflare_account_id
16
-# name = var.cloudflare_tunnel_name
17
-# secret = base64sha256(random_password.tunnel_secret.result)
18
-# }
+resource "cloudflare_zero_trust_tunnel_cloudflared" "k8s-tunnel" {
+ account_id = var.cloudflare_account_id
+ name = var.cloudflare_tunnel_name
+ secret = base64sha256(random_password.tunnel_secret.result)
+}
0 commit comments