Questions tagged [aws-regions]

Amazon Web Services (AWS) cloud services are provided in different named geographic locations called "regions". Different regions often require different configurations and feature slightly different services.

87 questions
0
votes
0 answers

Question about aws codebuild source s3 bucket from other region (cross region of another account)

I have a problem to set a CodeBuild project's source as S3 bucket. I'm working to make a cross region & account CI/CD pipeline by AWS CDK, and want to use a single source bucket in a CodeBuild project in the pipeline. S3 bucket which has build file…
0
votes
1 answer

Keycloak - Synchronize some users between two instances

I'm trying to synchronize some users (by custom attribute) between 2 Keycloak instances, including credentials. The use case: Keycloak is sitting in AWS, and we want to have a secondary instance on other region, for high availability even in case of…
0
votes
1 answer

AWS: Linux/UNIX platform is not available for Reserved Instance at N. Virginia region

I have an EC2 instance running in the N. Virginia region. The "Platform details" is shown as "Linux/UNIX". Now I am trying to purchase a reserved instance after selecting the same platform in the search field. But it is showing: Now when I search…
0
votes
1 answer

C# AWS - How to determine AWS Region Endpoint dynamically in c#

I am connecting to AWS SecretManager, in which my code connects to specific region endpoint(below code) AmazonSecretsManagerConfig config = new AmazonSecretsManagerConfig { RegionEndpoint = RegionEndpoint.USEast1 }; Now, I want to add one more new…
0
votes
1 answer

Can the AWS Credentials from Cognito send request to other Regions?

I created a user pool and an identity pool in one region. Can I use the credentials from the identity pool (accessKeyId, secretAccessKey, securityToken) to access data in another region?
0
votes
0 answers

Programmatically get AWS Route 53 Hosted Zone ID from AWS Region using AWS CLI

Currently I'm using https://docs.aws.amazon.com/general/latest/gr/elb.html as reference: if [ $AWS_REGION = "us-west-1" ]; then f AWS_HOSTED_ZONE_ID__ELB "Z368ELLRRE2KJ0"; fi if [ $AWS_REGION = "us-west-2" ]; then f AWS_HOSTED_ZONE_ID__ELB…
P i
  • 29,020
  • 36
  • 159
  • 267
0
votes
2 answers

Deploy AWS-CDK stack on other Regions

Basically, i have a simple stack(Virginia) which will have resources like S3 Bucket(Data is there) Glue_Table Glue Job Now, i want to deploy the same stack on Europe regions like eu-central-1. when i try to deploy the aws-cdk-stack on…
0
votes
1 answer

Pulumi gives invalid aws:region error when deploying to AWS

I am having a tinker with Pulumi having fallen out of love with Terraform. However, when following the gettins started guide, I'm receiving the following error when running pulumi up Diagnostics: aws:s3:Bucket (my-bucket): error: 1 error…
angusrose
  • 143
  • 1
  • 3
  • 13
0
votes
1 answer

Why do I have to enter a region name to get the region list in my AWS account

Using this code snippet, I can get a region list in my AWS account, but why do I have to enter a region name to get region list (In this case "us-east-1"). AWSCredentials credentials = new BasicAWSCredentials("accessKey", "secretKey"); …
Thanuja
  • 75
  • 9
0
votes
1 answer

How to check which AWS account and region is an application deployed in

We have an organization account (landing zone) with a lot of sub-accounts in it. I have link to an application (Domain name) that is deployed in one of these accounts in one of the regions. How can I figure out which account/region is it deployed…
systemdebt
  • 4,589
  • 10
  • 55
  • 116
0
votes
2 answers

Moving Across AWS Regions: us-east-1 to us-east-2

I have the following currently created in AWS us-east-1 region and per the request of our AWS architect I need to move it all to the us-east-2, completely, and continue developing in us-east-2 only. What are the easiest and least work and coding…
bda
  • 372
  • 1
  • 7
  • 22
0
votes
0 answers

Is there any AWS CLI command to fetch list of supported regions for a specific resource

As supported regions for AWS services and its resources are not always the same, I want to fetch the supported regions for resources programatically. Is there any available command to do so? I can find for the service but not for resource: For…
0
votes
2 answers

Which method to use for updating CA certificates for AWS RDS

I currently need to update the CA certificates for my AWS RDS instance, and as far as I am aware there are two ways to do this: by modifying my DB instance or by applying DB instance maintenance (source:…
user11508332
  • 537
  • 1
  • 11
  • 28
0
votes
1 answer

Need to make AWS Regions configurable in Spring Boot properties file

Existing Code : public class AWSConfiguration { @Autowired PropertyConfig property; public AmazonSQS getSqs() { return AmazonSQSClientBuilder.standard() .withCredentials(new…
Parth Pithadia
  • 276
  • 1
  • 3
  • 18
0
votes
1 answer

How to query AWS services without specific region

I am using AWS .Net SDK and trying to query AWS services by creating appropriate client like below var cred = new BasicAWSCredentials(awsAccessKeyId, awsSecretKeyId); using (AmazonEC2Client ec2Client = new AmazonEC2Client(cred, region)) { //…