Move locals to seperate file

This commit is contained in:
Khue Doan 2020-11-24 01:31:57 +07:00
parent 394efcec51
commit 074bd788cb
2 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,3 @@
locals {
domain = "khuedoan.com"
}
resource "kubernetes_ingress" "grafana_ingress" {
metadata {
name = "grafana-ingress"

3
platform/locals.tf Normal file
View File

@ -0,0 +1,3 @@
locals {
domain = "khuedoan.com"
}