replace root.path with module.path for dashy conf [ci skip]

This commit is contained in:
Viktor Barzin 2023-10-22 11:39:02 +00:00
parent 267c5668c9
commit 7ca14aa7df
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
3 changed files with 12 additions and 1 deletions

View file

@ -24,7 +24,7 @@ resource "kubernetes_config_map" "config" {
}
data = {
"conf.yml" = file("${path.root}/modules/kubernetes/dashy/conf.yml")
"conf.yml" = file("${path.module}/conf.yml")
}
}