From bcab69572cb0dca4c7c6426203d4232e6e89d8db Mon Sep 17 00:00:00 2001 From: aeitzman Date: Tue, 29 Nov 2022 08:47:37 -0800 Subject: [PATCH] addressing review comment --- google/internal/externalaccount/aws.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/google/internal/externalaccount/aws.go b/google/internal/externalaccount/aws.go index 5fbea41..2bf3202 100644 --- a/google/internal/externalaccount/aws.go +++ b/google/internal/externalaccount/aws.go @@ -62,11 +62,13 @@ const ( // The AWS authorization header name for the auto-generated date. awsDateHeader = "x-amz-date" + // Supported AWS configuration environment variables. awsAccessKeyId = "AWS_ACCESS_KEY_ID" awsDefaultRegion = "AWS_DEFAULT_REGION" awsRegion = "AWS_REGION" awsSecretAccessKey = "AWS_SECRET_ACCESS_KEY" awsSessionToken = "AWS_SESSION_TOKEN" + awsTimeFormatLong = "20060102T150405Z" awsTimeFormatShort = "20060102" )