Commit 3a2f038c authored by Danny's avatar Danny

init commit

parents
module "kubernetes_service" "kube2iam" {
metadata {
name = "kube2iam"
labels {
App = "kube2iam-service"
}
}
type = "DaemonSet"
spec {
container {
image = "${var.kube2iam-container}"
name = "kube2iam-container"
}
}
port {
port = 8181
target_port = 8181
}
}
variable "kube2iam-container" {
default = "jtblin/kube2iam:latest"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment