Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add helpers.shema.Provisoner base type for provisioners like there's one for providers #10422

Closed
wants to merge 9 commits into from
Closed

Commits on Nov 29, 2016

  1. Configuration menu
    Copy the full SHA
    e87df48 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    12e68d0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee5ffc8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8feaae7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    68c556a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    66a0ebc View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2016

  1. Migrate provisioners functions to schema.ResourceData

    Known problems:
    * had to introduce `ResourceData.GetRawConfig()` since chef provisioner parses configuration manually;
    * In `remote-exec` provisioner `inline` can no longer accept 'string' value, only list of strings allowed. - due to migration to schema. There's a workaround like it;s done in `chef` provisioner, but I'd like to keep code as is.
    VladRassokhin committed Dec 1, 2016
    Configuration menu
    Copy the full SHA
    a3ed11c View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2016

  1. Migrate chef provisioner schema.Schema

    * `chef.Provisioner` structure left intact but now it's decoded from `schema.ResourceData` instead of `terraform.ResourceConfig` suing simple copy-paste-bsed solution;
     * Added simple schema without any validation yet;
     * `ResourceData.GetRawConfig` removed since it's not longer needed.
    VladRassokhin committed Dec 2, 2016
    Configuration menu
    Copy the full SHA
    b4d8728 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bcd52d9 View commit details
    Browse the repository at this point in the history