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