Comments
Sort by recent activity
Yup. When we run aws configure, it creates a profile exactly like that, with a bit more information. We ran a code snippet to make sure our AWS SDK configuration was correct. import com.amazonaws.regions.AwsProfileRegionProvider;
public class Scratch
{
public static void main(String[] args)
{
System.out.println(new AwsProfileRegionProvider().getRegion());
}
} Execution of this program in our development environment results in "us-east-1." The developer still cannot run migrations that use AWS functionality in Flyway. / comments
Yup. When we run aws configure, it creates a profile exactly like that, with a bit more information. We ran a code snippet to make sure our AWS SDK configuration was correct.import com.amazonaws.re...