switch kubernetes provider for annotation patching

This commit is contained in:
2024-04-13 18:34:04 +02:00
parent 7d28114157
commit f45d0657c8
3 changed files with 13 additions and 5 deletions

View File

@@ -12,6 +12,10 @@ terraform {
source = "cloudflare/cloudflare"
version = "~> 4.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.28.0"
}
kubectl = {
source = "gavinbunney/kubectl"
version = ">= 1.14.0"
@@ -39,6 +43,10 @@ provider "cloudflare" {
api_key = var.cloudflare_api_key
}
provider "kubernetes" {
config_path = "oke/kubeconfig"
}
provider "kubectl" {
config_path = "oke/kubeconfig"
}