Skip to content

Commit

Permalink
Unification in home page
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-jagruti-a committed Dec 18, 2023
1 parent 320cdfe commit 955da56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ func NewEmail() *utilsRepository {
}

func GetAWSIAMUserSession() (*session.Session, error) {
awsRegion := "ap-south-1"
awsAccessKeyId := "AKIAYJJIHLXJBIBA76G5"
awsSecretAccessKey := "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"
awsRegion := os.Getenv("REGION")
awsAccessKeyId := os.Getenv("ACCESS_KEY_ID")
awsSecretAccessKey := os.Getenv("SECRET_ACCESS_KEY")

sess, err := session.NewSession(&aws.Config{
Region: aws.String(awsRegion),
Expand Down

0 comments on commit 955da56

Please sign in to comment.