Skip to content

Instantly share code, notes, and snippets.

@dennisroche
Last active July 10, 2024 08:10
Show Gist options
  • Save dennisroche/6dbcb4b341f7cbd6c19cc072313c0c3c to your computer and use it in GitHub Desktop.
Save dennisroche/6dbcb4b341f7cbd6c19cc072313c0c3c to your computer and use it in GitHub Desktop.
Scoop Manifest for Atmos
{
"version": "1.83.1",
"description": "Terraform Orchestration Tool for DevOps. Keep environment configuration DRY with hierarchical imports of configurations, inheritance, and WAY more. Native support for Terraform and Helmfile.",
"homepage": "https://github.com/cloudposse/atmos/",
"license": "Apache-2.0",
"architecture": {
"64bit": {
"url": "https://github.com/cloudposse/atmos/releases/download/v1.83.1/atmos_1.83.1_windows_amd64.exe",
"hash": "6008ada9a269e24d47055ec574a58c9cc401113fa6e1e3d1fdbc45a8a8fa9d36"
},
"32bit": {
"url": "https://github.com/cloudposse/atmos/releases/download/v1.83.1/atmos_1.83.1_windows_386.exe",
"hash": "4f387f458447af07cd691e34e468f34e81c582f02c977cb7da97c16838a65736"
},
"arm64": {
"url": "https://github.com/cloudposse/atmos/releases/download/v1.83.1/atmos_1.83.1_windows_arm64.exe",
"hash": "1043897d3e41410491066172cccc20a5952a2072ef9b90d5bb9570f0363bebd8"
}
},
"pre_install": [
"$bin_name = if ($architecture -eq '64bit') {'windows_amd64'} else {'windows_386'}",
"Rename-Item \"$dir\\atmos_$($version)_$bin_name.exe\" \"atmos.exe\""
],
"bin": "atmos.exe",
"checkver": "github",
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/cloudposse/atmos/releases/download/v$version/atmos_$version_windows_amd64.exe"
},
"32bit": {
"url": "https://github.com/cloudposse/atmos/releases/download/v$version/atmos_$version_windows_386.exe"
},
"arm64": {
"url": "https://github.com/cloudposse/atmos/releases/download/v$version/atmos_$version_windows_arm64.exe"
}
},
"hash": {
"url": "$baseurl/atmos_$version_SHA256SUMS"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment