5 messages
Discussion related to Amazon Web Services (AWS)
Archive: https://archive.sweetops.com/aws/
Craigabout 1 year ago
:scratchhead: what am I doing wrong here with my Terraform where Cloudposse Ec2 modules only want to create a new EC2 instance? Whatever I do here my Terraform is not aware that there should already be an EC2 instance created that it's controlling, even on subsequent plan & applies:
module.atscale_testing_vm.aws_instance.default[0]: Creating...
╷
│ Error: collecting instance settings: empty result
│
│ with module.atscale_testing_vm.aws_instance.default[0],
│ on .terraform/modules/atscale_testing_vm/main.tf line 106, in resource "aws_instance" "default":
│ 106: resource "aws_instance" "default" {Tal Shechanovitzabout 1 year ago(edited)
Is the PostgreSQL connection type not supported in the Cloud Posse Glue connection module found here: https://github.com/cloudposse/terraform-aws-glue/tree/main/modules/glue-connection?
Justin Kerrabout 1 year ago
Really enjoying getting my Atmos POC up and running. What I have so far will really help scale this one-man wrecking crew.
I was wondering, though, if there was a way to set an AWS profile as part of a given org/stack config for terrarorm. The docs I've seen only suggest an export statement to do this.
I was wondering, though, if there was a way to set an AWS profile as part of a given org/stack config for terrarorm. The docs I've seen only suggest an export statement to do this.
Juhi Sinhaabout 1 year ago
Can someone pls answer that how do we connect to RDS to take backup of data?
Weston Platterabout 1 year ago(edited)
I wanted to get feedback on two migration strategies for converting a regional Aurora RDS cluster to a Global Database:
1. In-place Conversion:
◦ Convert existing regional cluster to Global Database
◦ Import into a forked version of cloudposse/aws-aurora-postgres component, which changes cluster_type to global (ie, this line)
◦ This could work well, but not sure how easy it's going to be to jam the Global RDS Dataset cluster into a fork of the regional cluster component.
2. Snapshot & Restore:
◦ Create snapshot of regional cluster
◦ Provision new Global Database cluster using my fork of cloudposse/aws-aurora-postgres component.
◦ Restore from snapshot
◦ This seems less complex and less prone to issues, but has more prod down time.
Has anyone successfully imported an existing Aurora Global Database into the Cloud Posse component?
Are there other ways to doing this that I haven't thought of?
1. In-place Conversion:
◦ Convert existing regional cluster to Global Database
◦ Import into a forked version of cloudposse/aws-aurora-postgres component, which changes cluster_type to global (ie, this line)
◦ This could work well, but not sure how easy it's going to be to jam the Global RDS Dataset cluster into a fork of the regional cluster component.
2. Snapshot & Restore:
◦ Create snapshot of regional cluster
◦ Provision new Global Database cluster using my fork of cloudposse/aws-aurora-postgres component.
◦ Restore from snapshot
◦ This seems less complex and less prone to issues, but has more prod down time.
Has anyone successfully imported an existing Aurora Global Database into the Cloud Posse component?
Are there other ways to doing this that I haven't thought of?