-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganization.tfe.tf
36 lines (32 loc) · 1.02 KB
/
organization.tfe.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
resource "tfe_organization" "organization" {
name = "ORGANIZATION_NAME"
email = "USER_EMAIL"
}
data "tfe_team" "owners" {
name = "owners"
organization = tfe_organization.organization.name
}
resource "tfe_team_token" "team_token" {
team_id = data.tfe_team.owners.id
}
#resource "tfe_workspace" "organization_workspace" {
# name = "organization"
# organization = tfe_organization.organization.name
#}
#
#resource "tfe_variable" "var_organization_name" {
# key = "organization_name"
# value = tfe_organization.organization.name
# category = "terraform"
# workspace_id = tfe_workspace.organization_workspace.id
# description = "organization name on github and terraform cloud"
#}
#
#resource "tfe_variable" "tfe_team_token" {
# key = "tfe_team_token"
# value = tfe_team_token.team_token.token
# category = "env"
# workspace_id = tfe_workspace.organization_workspace.id
# description = "organization name on github and terraform cloud"
# sensitive = true
#}