5 lines
167 B
HCL
5 lines
167 B
HCL
resource "local_file" "nginx_config" {
|
|
filename = "${path.module}/../tmp/nginx.conf"
|
|
content = templatefile("${path.module}/templates/nginx.conf.template", {})
|
|
}
|