Skip to content

Latest commit

 

History

History
82 lines (60 loc) · 1.11 KB

heroku_pipeline.md

File metadata and controls

82 lines (60 loc) · 1.11 KB

heroku_pipeline

back

Index

Terraform

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

top

Example Usage

module "heroku_pipeline" {
  source = "./modules/heroku/d/heroku_pipeline"

  # name - (required) is a type of string
  name = null
}

top

Variables

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

top

Datasource

data "heroku_pipeline" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

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

output "owner_id" {
  description = "returns a string"
  value       = data.heroku_pipeline.this.owner_id
}

output "owner_type" {
  description = "returns a string"
  value       = data.heroku_pipeline.this.owner_type
}

output "this" {
  value = heroku_pipeline.this
}

top