FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

heroku_cert

Provides a Heroku SSL certificate resource. It allows to set a given certificate for a Heroku app.

Example Usage

# Create a new Heroku app
resource "heroku_app" "default" {
    name = "test-app"
}

# Add-on SSL to application
resource "heroku_addon" "ssl" {
    app = "${heroku_app.default.name}"
    plan = "ssl"
}

# Establish certificate for a given application
resource "heroku_cert" "ssl_certificate" {
    app = "${heroku_app.default.name}"
    certificate_chain = "${file("server.crt")}"
    private_key = "${file("server.key")}"
    depends_on = "heroku_addon.ssl"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io