Downloads:
18,346
Downloads of v 1.2.694:
845
Last Update:
21 Nov 2024
Package Maintainer(s):
Software Author(s):
- Amazon Web Services Team
Tags:
awscli-session-manager amazon web services aws cli session manager plugin start end stop connection managed instances- Software Specific:
- Software Site
- Software Docs
- Software Mailing List
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
AWS Session Manager Plugin
- 1
- 2
- 3
1.2.694 | Updated: 21 Nov 2024
- Software Specific:
- Software Site
- Software Docs
- Software Mailing List
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
18,346
Downloads of v 1.2.694:
845
Maintainer(s):
Software Author(s):
- Amazon Web Services Team
AWS Session Manager Plugin 1.2.694
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Amazon Web Services Team. The inclusion of Amazon Web Services Team trademark(s), if any, upon this webpage is solely to identify Amazon Web Services Team goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install AWS Session Manager Plugin, run the following command from the command line or from PowerShell:
To upgrade AWS Session Manager Plugin, run the following command from the command line or from PowerShell:
To uninstall AWS Session Manager Plugin, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download awscli-session-manager --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade awscli-session-manager -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade awscli-session-manager -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install awscli-session-manager
win_chocolatey:
name: awscli-session-manager
version: '1.2.694'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'awscli-session-manager' do
action :install
source 'INTERNAL REPO URL'
version '1.2.694'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller awscli-session-manager
{
Name = "awscli-session-manager"
Version = "1.2.694"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'awscli-session-manager':
ensure => '1.2.694',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 21 Nov 2024.
If you want to use the AWS Command Line Interface (AWS CLI) to start and end sessions that connect you to your managed instances, you must first install the Session Manager plugin on your local machine.
From: The software installer.
LICENSE
The Amazon Session Manager Plugin constitutes AWS Content as defined in the AWS Customer Agreement
or your relevant customer agreement with AWS, and is licensed to you under that agreement.
The Amazon Session Manager Plugin includes the following third-party software/licensing:
** cihub/seelog - https://github.com/cihub/seelog
Copyright (c) 2012, Cloud Instruments Co., Ltd. <[email protected]>. All rights reserved.
** gorilla/websocket - https://github.com/gorilla/websocket
Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved.
** fsnotigy/fsnotify - https://github.com/fsnotify/fsnotify
Copyright (c) 2012 The Go Authors. All rights reserved.
Copyright (c) 2012 fsnotify Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Cloud Instruments Co., Ltd. nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
----------------
** twinj/uuid - https://github.com/twinj/uuid
Copyright (C) 2011 by Krzysztof Kowalik <[email protected]>
Copyright (C) 2016 by Daniel Kemp <[email protected]> Derivative work
** stretchr/testify - https://github.com/stretchr/testify
Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell
** stretchr/objx - https://github.com/stretchr/objx
Copyright (c) 2014 Stretchr, Inc.
Copyright (c) 2017-2018 objx contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Download:
x32: https://s3.amazonaws.com/session-manager-downloads/plugin/latest/windows/SessionManagerPluginSetup.exe
x64: https://s3.amazonaws.com/session-manager-downloads/plugin/latest/windows/SessionManagerPluginSetup.exe
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum type: sha256
checksum32: 41AE406DC6B3D421FF8FF935B8BD69FCDD9C2320B0D0EC9C225616BE09CDAC40
checksum64: 41AE406DC6B3D421FF8FF935B8BD69FCDD9C2320B0D0EC9C225616BE09CDAC40
File 'LICENSE.txt' is obtained from:
The software installer.
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$pathToRemove = "${env:PROGRAMFILES}\Amazon\SessionManagerPlugin\bin"
foreach ($registryPath in 'hklm:\system\currentcontrolset\control\session manager\environment', 'hkcu:\environment') {
$p = (Get-Itemproperty -path "$registryPath" -Name Path).Path
if ("$p" | Select-String -SimpleMatch "$pathToRemove"){
$newPath = ("$p" -split ';' | ForEach-Object { if (-not ($_ -eq "$pathToRemove")) { $_ } } ) -join ';'
Set-ItemProperty -path "$registryPath" -Name Path -Value $NewPath
}
}
Remove-Item -Recurse "${env:PROGRAMFILES}\Amazon\SessionManagerPlugin\" -ErrorAction SilentlyContinue
If ((Get-ChildItem "${env:PROGRAMFILES}\Amazon\") -eq 0) { Remove-Item -Recurse "${env:PROGRAMFILES}\Amazon\" -ErrorAction SilentlyContinue }
md5: 23734B1D42EB709B80D76D42B874BF5F | sha1: D9A2C8E0C6586CB194AF34CB281887AE3850F5EC | sha256: 41AE406DC6B3D421FF8FF935B8BD69FCDD9C2320B0D0EC9C225616BE09CDAC40 | sha512: 2F59A397FD7E4E99738AA3C10ED5A508AAC879E06F42486ACAF02888836E5BDD05AB0DF0A859AD4583FE78C9937F6D0CFD47B1994DA1360C9F9A467ABD30D876
Log in or click on link to see number of positives.
- awscli-session-manager.1.2.694.nupkg (d7bf396aceee) - ## / 69
- SessionManagerPluginSetup.exe (41ae406dc6b3) - ## / 72
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
AWS Session Manager Plugin 1.2.694 | 845 | Thursday, November 21, 2024 | Approved | |
AWS Session Manager Plugin 1.2.688 | 602 | Friday, November 8, 2024 | Approved | |
AWS Session Manager Plugin 1.2.677 | 897 | Saturday, October 12, 2024 | Approved | |
AWS Session Manager Plugin 1.2.650 | 2310 | Wednesday, July 3, 2024 | Approved | |
AWS Session Manager Plugin 1.2.633 | 926 | Saturday, June 1, 2024 | Approved | |
AWS Session Manager Plugin 1.2.553.0 | 2477 | Thursday, January 11, 2024 | Approved | |
AWS Session Manager Plugin 1.2.536.0 | 110 | Wednesday, January 10, 2024 | Approved | |
AWS Session Manager Plugin 1.2.463.0 | 4779 | Friday, March 17, 2023 | Approved | |
AWS Session Manager Plugin 1.2.398.0 | 1705 | Saturday, October 29, 2022 | Approved | |
AWS Session Manager Plugin 1.2.339.0 | 1483 | Sunday, June 19, 2022 | Approved | |
AWS Session Manager Plugin 1.2.54.0 | 2212 | Sunday, March 21, 2021 | Approved |
Copyright © Amazon Web Services. All rights reserved.
This package has no dependencies.
Ground Rules:
- This discussion is only about AWS Session Manager Plugin and the AWS Session Manager Plugin package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or AWS Session Manager Plugin, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.