Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 1.09 KB

File metadata and controls

81 lines (60 loc) · 1.09 KB

heroku_collaborator

back

Index

Terraform

terraform {
  required_providers {
    heroku = ">= 4.1.1"
  }
}

top

Example Usage

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

Variables

variable "app" {
  description = "(required)"
  type        = string
}

variable "email" {
  description = "(required)"
  type        = string
}

top

Resource

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

Outputs

output "id" {
  description = "returns a string"
  value       = heroku_collaborator.this.id
}

output "this" {
  value = heroku_collaborator.this
}

top