Skip to content

Instantly share code, notes, and snippets.

@antigenius0910
Last active April 5, 2022 16:31
Show Gist options
  • Save antigenius0910/548254149b08437322eb4d45137fb7df to your computer and use it in GitHub Desktop.
Save antigenius0910/548254149b08437322eb4d45137fb7df to your computer and use it in GitHub Desktop.
Origin CA Key from API Token section of your Cloudflare
resource "kubernetes_secret" "origin-ca-key" {
metadata {
name = "origin-ca-key"
namespace = "istio-system"
}
data = {
key = var.origin-ca-key
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment