Skip to content

Instantly share code, notes, and snippets.

@omarismail
Created May 11, 2021 21:59
Show Gist options
  • Save omarismail/29eb33c670cfbc2e034a45fedccd307b to your computer and use it in GitHub Desktop.
Save omarismail/29eb33c670cfbc2e034a45fedccd307b to your computer and use it in GitHub Desktop.
tf config
terraform {
required_providers {
tfe = {
version = "~> 0.24.0"
}
}
}
provider "tfe" {
hostname = "tfe-zone-4c292d5b.ngrok.io"
token = "<redacted>"
}
data "tfe_workspace" "test" {
name = "test"
organization = "hashicorp"
}
data "tfe_admin_organizations" "orgs" {}
output "anything" {
value = data.tfe_workspace.test
}
output "result" {
value = data.tfe_admin_organizations.orgs
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment