Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 454 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 454 Bytes

Install

Run make install from within the terraform-provider-convox directory. The convox provider should automatically be discovered by terraform

Example

provider "convox" {
  host = "foo.bar.com"
  password = "xxx"
}

resource "convox_app" "test-app" {
  name = "test-app"
  rack = "foo"

  params {
    Internal = false
  }

  environment {
    Foo = "bar"
    FooBar = 10
  }
}