Use this data source to get information about a Heroku Team.
data "heroku_team" "my_heroku_team" {
name = "name_of_my_heroku_team"
}
output "heroku_team_data_basic" {
value = [
"Heroku team",
"id: ${data.heroku_team.my_heroku_team.id}",
"default: ${data.heroku_team.my_heroku_team.default}",
"membership_limit: ${data.heroku_team.my_heroku_team.membership_limit}",
"provisioned_licenses: ${data.heroku_team.my_heroku_team.provisioned_licenses}",
"type: ${data.heroku_team.my_heroku_team.type}",
]
}
The following arguments are supported:
name
- (Required) The team nameThe following attributes are exported:
id
- The ID of the teamdefault
- Whether to use this team when none is specifiedcredit_card_collections
- Whether charges incurred by the team are paid by credit cardmembership_limit
- Upper limit of members allowed in a teamprovisioned_licenses
- Whether the team is provisioned licenses by Salesforcetype
- type of team Will likely be either "enterprise" or "team"