diff --git a/aws/aws_integration_test.go b/aws/aws_integration_test.go index 122a2c5..f66f53d 100644 --- a/aws/aws_integration_test.go +++ b/aws/aws_integration_test.go @@ -25,7 +25,6 @@ func TestEncryptDecryptWithAWS(t *testing.T) { profile := os.Getenv("AWS_PROFILE") require.NotEmpty(t, key) require.NotEmpty(t, region) - require.NotEmpty(t, profile) crypt := crypto.New(New(key, region, profile)) diff --git a/main.go b/main.go index 6879729..35d0774 100644 --- a/main.go +++ b/main.go @@ -220,7 +220,7 @@ func encrypt() cli.Command { }, cli.StringFlag{ Name: "profile", - Value: aws.DefaultProfile, + Value: "", Usage: "the AWS API credentials profile", Destination: &awsProfile, }, @@ -458,7 +458,7 @@ func decrypt() cli.Command { }, cli.StringFlag{ Name: "profile", - Value: aws.DefaultProfile, + Value: "", Usage: "the AWS API credentials profile", Destination: &awsProfile, },