fpt.nuspec 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  3. <metadata>
  4. <id>fpt</id>
  5. <version>1.0.8</version>
  6. <packageSourceUrl>https://github.com/douglaswth/chocolatey-packages/tree/master/automatic/fpt</packageSourceUrl>
  7. <owners>Douglas Thrift</owners>
  8. <title>fpt - Flexera Policy Tool</title>
  9. <authors>Flexera</authors>
  10. <projectUrl>https://github.com/rightscale/policy_sdk/tree/master/cmd/fpt</projectUrl>
  11. <iconUrl>http://cdn.rawgit.com/douglaswth/chocolatey-packages/master/icons/fpt.png</iconUrl>
  12. <licenseUrl>https://github.com/rightscale/policy_sdk/blob/master/LICENSE</licenseUrl>
  13. <requireLicenseAcceptance>false</requireLicenseAcceptance>
  14. <projectSourceUrl>https://github.com/rightscale/policy_sdk</projectSourceUrl>
  15. <bugTrackerUrl>https://github.com/rightscale/policy_sdk/issues</bugTrackerUrl>
  16. <tags>fpt flexera rightscale API rest cli go golang</tags>
  17. <summary>Flexera Policy Tool</summary>
  18. <description>
  19. # fpt - Flexera Policy Tool
  20. `fpt` is a command line tool to aid in the development and testing of [RightScale Policies](https://docs.rightscale.com/policies/). The tool is able to syntax check, upload, and run Policies.
  21. ### Configuration
  22. `fpt` interfaces with the [Policy API](https://reference.rightscale.com/governance-policies/). Credentials for the API can be provided in two ways:
  23. 1. YAML-based configuration file - Run `fpt config account &lt;name&gt;`, where name is a nickname for the account, to interactively write the configuration file into `$HOME/.fpt.yml` for the first time. You will be prompted for the following fields:
  24. * Account ID - Numeric account number, such as `60073`
  25. * API endpoint host - Hostname, typically `governance-3.rightscale.com`
  26. * Refresh Token - Your personal OAuth token available from **Settings &gt; Account Settings &gt; API Credentials** in the RightScale Cloud Management dashboard
  27. 2. Environment variables - These are meant to be used by build systems such as Travis CI. The following vars must be set: `FPT_LOGIN_ACCOUNT_ID`, `FPT_LOGIN_ACCOUNT_HOST`, `FPT_LOGIN_ACCOUNT_REFRESH_TOKEN`. These variables are equivalent to the ones described in the YAML section above.
  28. **Please Note**: This is an automatically updated package. If you find it is
  29. out of date by more than a day or two, please contact the maintainer(s) and
  30. let them know the package is no longer updating correctly.
  31. </description>
  32. <releaseNotes>See the [ChangeLog](https://github.com/rightscale/policy_sdk/blob/master/cmd/fpt/ChangeLog.md).</releaseNotes>
  33. </metadata>
  34. <files>
  35. <file src="tools\**" target="tools" />
  36. </files>
  37. </package>