heroku_collaborator

A Heroku Collaborator receives access to a specific app that is not owned by a team.

Example Usage

resource "heroku_app" "foobar" {
  name = "foobar"
  region = "us"
}

# Create a new collaborator for the foobar application
resource "heroku_collaborator" "foobar-collaborator" {
    app_id = heroku_app.foobar.id
    email = "collaborator@foobar.com"
}

Argument Reference

Attributes Reference

The following attributes are exported:

Import

Collaborators can be imported using the combination of the application name, a colon, and the collaborator's email address

For example:

$ terraform import heroku_collaborator.foobar-collaborator foobar_app:collaborator@foobar.com