You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi, I configured pipeline to run Powershell script that was working fine except AWS commands so tried to execute statements like given below but it is failing on Install-Package statement. What could be the reason (memory or permission issue) ?
param ([String]$environment,[String]$accessKey, [String] $secretKey, [String]$s3Region, [String]$bucketName, [String]$templateName, [String]$templatePath)
Install-Package -Name AWSPowerShell -Source https://www.powershellgallery.com/api/v2/ -ProviderName NuGet -ExcludeVersion -Destination /usr/local/share/powershell/Modules -ForceSet-AWSCredentials -AccessKey $accessKey -SecretKey $secretKey
Write-S3Object -BucketName $bucketName -File $templateName -Force -Key $templatePath -Region $s3Region
If I were you, I would preload PowerShell and any required modules onto the build agent to that they are always there for use
However, if that is not possible, and in the interests of faster build times, then you should use the modular AWS.Tools packages rather than the monolithic AWSPowerShell. AWS.Tools has a separate package for each AWS service, so you only install for the services you expect to use, e.g. AWS.Tools.S3. Also install the packages to user-space if you're doing it with each run of your plan
Install-Module AWS.Tools.Installer -Force -Scope CurrentUser
Install-AWSToolsModule AWS.Tools.S3 -Force -Scope CurrentUser -Cleanup
Set-AWSCredentials -AccessKey $accessKey -SecretKey $secretKey
Write-S3Object -BucketName $bucketName -File $templateName -Force -Key $templatePath -Region $s3Region
...hey are a part of us, shaping how we interact with the world around us. The same holds true for programming languages when we think about how different kinds of vulnerabilities raise their heads in t...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.