With the assumption that the AWSPowerShell module is installed.
With AWS S3 support we could download https://s3-eu-west-1.amazonaws.com/cloudformation-templates-eu-west-1/Windows_Single_Server_SharePoint_Foundation.template with something like this
something = @{
DependencyType = 'AWS-S3'
BucketName = 'cloudformation-templates'
Region = 'eu-west-1' #Optional
Key='Windows_Single_Server_SharePoint_Foundation.template'
}
We need to consider authentication but as a first version we could it is setup on your profile with Set-AWSCredentials
With the assumption that the AWSPowerShell module is installed.
With AWS S3 support we could download
https://s3-eu-west-1.amazonaws.com/cloudformation-templates-eu-west-1/Windows_Single_Server_SharePoint_Foundation.templatewith something like thisWe need to consider authentication but as a first version we could it is setup on your profile with
Set-AWSCredentials