nicgrayson / terraform-provider-marathon

a Terraform (http://terraform.io) provider for interacting with Marathon (https://mesosphere.github.io/marathon/)
MIT License
59 stars 24 forks source link

app: add support for fetch field #39

Closed rjeczalik closed 8 years ago

rjeczalik commented 8 years ago

This PR adds support for fetch api, extended version of uris one.

Example usage:

resource "marathon_app" "app" {
  ...

  fetch {
    uri = "https://s3.amazonaws.com/bucket/exec.gz"
    executable = true
    extract = true
  }

  ...
}
banno-autobot commented 8 years ago

Can one of the admins verify this patch?

adamdecaf commented 8 years ago

Thanks!