Skip to content

Latest commit

 

History

History
90 lines (68 loc) · 1.37 KB

heroku_space_app_access.md

File metadata and controls

90 lines (68 loc) · 1.37 KB

heroku_space_app_access

back

Index

Terraform

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

top

Example Usage

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

Variables

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

variable "permissions" {
  description = "(required)"
  type        = set(string)
}

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

top

Resource

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

Outputs

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

output "this" {
  value = heroku_space_app_access.this
}

top