我想在我的 AWS Elastic Beanstalk 中使用 powershell 来安装一些 Windows 功能(即网络套接字)。
我找到了这个https://docs.aws.amazon.com/vsts/latest/userguide/awspowershell-module-script.html但我不知道,也找不到与此等效的任务。目前在我的管道中,我有这个
- task: AmazonWebServices.aws-vsts-tools.awsshellscript.awsshellscript@1
displayName: 'Install Web Socket Protocol'
inputs:
scriptSource: 'inline'
script: 'Install-WindowsFeature -name Web-WebSockets'
awsCredentials: 'AWS-test'
regionName: 'ap-southeast-2'
applicationName: 'test'
environmentName: 'test-staging'
但这一个在 bash shell 脚本上运行。powershell 脚本的等效任务是什么?