back
terraform {
required_providers {
heroku = ">= 4.1.1"
}
}
top
module "heroku_collaborator" {
source = "./modules/heroku/r/heroku_collaborator"
# app - (required) is a type of string
app = null
# email - (required) is a type of string
email = null
}
top
variable "app" {
description = "(required)"
type = string
}
variable "email" {
description = "(required)"
type = string
}
top
resource "heroku_collaborator" "this" {
# app - (required) is a type of string
app = var.app
# email - (required) is a type of string
email = var.email
}
top
output "id" {
description = "returns a string"
value = heroku_collaborator.this.id
}
output "this" {
value = heroku_collaborator.this
}
top