mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 10:01:08 -04:00
1.4 KiB
1.4 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| heroku | Heroku: heroku_pipeline_ | docs-heroku-resource-pipeline-x | Provides a Heroku Pipeline resource. |
heroku_pipeline
Provides a Heroku Pipeline resource.
A pipeline is a group of Heroku apps that share the same codebase. Once a
pipeline is created, and apps are added to different stages using
heroku_pipeline_coupling, you can promote app
slugs to the next stage.
Example Usage
# Create Heroku apps for staging and production
resource "heroku_app" "staging" {
name = "test-app-staging"
}
resource "heroku_app" "production" {
name = "test-app-production"
}
# Create a Heroku pipeline
resource "heroku_pipeline" "test-app" {
name = "test-app"
}
# Couple apps to different pipeline stages
resource "heroku_pipeline_coupling" "staging" {
app = "${heroku_app.staging.name}"
pipeline = "${heroku_pipeline.test-app.id}"
stage = "staging"
}
resource "heroku_pipeline_coupling" "production" {
app = "${heroku_app.production.name}"
pipeline = "${heroku_pipeline.test-app.id}"
stage = "production"
}
Argument Reference
The following arguments are supported:
name- (Required) The name of the pipeline.
Attributes Reference
The following attributes are exported:
id- The UUID of the pipeline.name- The name of the pipeline.