mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 21:09:34 +01:00
16 lines
347 B
Terraform
16 lines
347 B
Terraform
|
resource "kubernetes_service_account" "operator" {
|
||
|
metadata {
|
||
|
name = "cilium-operator"
|
||
|
namespace = "kube-system"
|
||
|
}
|
||
|
automount_service_account_token = false
|
||
|
}
|
||
|
|
||
|
resource "kubernetes_service_account" "agent" {
|
||
|
metadata {
|
||
|
name = "cilium-agent"
|
||
|
namespace = "kube-system"
|
||
|
}
|
||
|
automount_service_account_token = false
|
||
|
}
|