Last active
June 8, 2017 15:22
-
-
Save raphink/ac7cbac4e77911a3c1784513a9d80cfb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data "template_file" "infra" { | |
template = "1234" | |
} | |
resource "rancher_environment" "environment" { | |
name = "foo" | |
description = "foo" | |
orchestration = "cattle" | |
member = ["${map("external_id", data.template_file.infra.rendered, "external_id_type", "github_team", "role", "owner")}"], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment