1
0
mirror of https://github.com/poseidon/typhoon synced 2024-11-08 08:49:20 +01:00
typhoon/addons/flannel/service-account.tf
Dalton Hubble 7b8a51070f Add Terraform modules for CoreDNS, Cilium, and flannel
* With the new component system, these components can be managed
independent from the cluster and rolled or edited in advanced
ways
2024-05-19 17:00:10 -07:00

8 lines
126 B
HCL

resource "kubernetes_service_account" "flannel" {
metadata {
name = "flannel"
namespace = "kube-system"
}
}