Skip to content

Commit f5acb5d

Browse files
committed
minor spelling correction
1 parent 3f50266 commit f5acb5d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

configure_aws_credential.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<#
2-
.SYNOPSIS
3-
This script is used in AWS CodeBuild to configure the default AWS
4-
Credentials for use by the AWS CLI and the AWS Powershell module.
5-
6-
By default, the AWS PowerShell Module does not know about looking up
7-
an AWS Container's credentials path, so this works around that issue.
2+
.SYNOPSIS
3+
This script is used in AWS CodeBuild to configure the default AWS Credentials for use by the AWS CLI and the AWS Powershell module.
4+
.DESCRIPTION
5+
By default, the AWS PowerShell Module does not know about looking up an AWS Container's credentials path, so this works around that issue.
6+
.NOTES
7+
This script enables AWSPowerShell cmdlets in your CodeBuild to interact with and access other AWS resources in your account.
88
#>
9-
'Configurating AWS credentials'
9+
'Configuring AWS credentials'
1010

1111
' - Retrieving temporary credentials from metadata'
1212
$uri = 'http://169.254.170.2{0}' -f $env:AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
@@ -24,4 +24,4 @@ $null = New-Item -Path $credentialsFile -Force
2424
' - Setting default AWS Region'
2525
'region={0}' -f $env:AWS_DEFAULT_REGION | Out-File -FilePath $credentialsFile -Append
2626

27-
' - AWS credentials configured'
27+
' - AWS credentials configured'

0 commit comments

Comments
 (0)