Skip to content
Snippets Groups Projects
Unverified Commit b490231f authored by Antoine Legrand's avatar Antoine Legrand Committed by GitHub
Browse files

Merge pull request #2025 from kubernetes-incubator/terraform-aws-inventory

contrib/terraform/aws: Make path to generated inventory configurable
parents 6c7eabb5 8766b361
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ data "template_file" "inventory" {
resource "null_resource" "inventories" {
provisioner "local-exec" {
command = "echo '${data.template_file.inventory.rendered}' > ../../../inventory/hosts"
command = "echo '${data.template_file.inventory.rendered}' > ${var.inventory_file}"
}
triggers {
......
......@@ -31,3 +31,5 @@ default_tags = {
# Env = "devtest"
# Product = "kubernetes"
}
inventory_file = "../../../inventory/hosts"
......@@ -103,3 +103,7 @@ variable "default_tags" {
description = "Default tags for all resources"
type = "map"
}
variable "inventory_file" {
description = "Where to store the generated inventory file"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment