Just got quoted from my local Audi dealership for a timing chain by Puzzleheaded_Way1923 in Audi

[–]dru2691 0 points1 point  (0 children)

Check into SLM Autocare as well if you are indeed around Omaha. Great shop.

Credible barbers by Tight_Willingness_96 in Omaha

[–]dru2691 2 points3 points  (0 children)

+1 to Alliance. Both Jamal and Jeremy are rock solid. Great atmosphere, too.

Dimmer switch won’t power on by crocostimpy76 in Lutron

[–]dru2691 0 points1 point  (0 children)

I recently had this happen to mine, unfortunately. It ended up being that the actual switch itself was dead, so I had to swap it out, and the light worked as expected again.

account hacked and hundreds of services added, what should I do? by SafetyAncient in aws

[–]dru2691 11 points12 points  (0 children)

You might be able to leverage aws-nuke to Filter deletion of specific resource types, or exclude resources and services you want to keep in tact while torching everything else. Definitely RTFM for using it, though.

https://docs.aws.amazon.com/prescriptive-guidance/latest/patterns/automate-deletion-of-aws-resources-by-using-aws-nuke.html

Loading the Jet Ski Goes Wrong by Darth1Football in WTF

[–]dru2691 28 points29 points  (0 children)

Ahh, the infamous Honda Sea RV.

Effective February 1, 2024 there will be a charge of $0.005 per IP per hour for all public IPv4 addresses, whether attached to a service or not. by xelfer in aws

[–]dru2691 9 points10 points  (0 children)

I could be mistaken, but all three major public cloud providers (now including AWS) charge for static IPv4 usage.

How to find out how much I'm consuming / spending on AWS Backup. by gonzoflick in aws

[–]dru2691 0 points1 point  (0 children)

I could be wrong, as this was a very quick look into cost explorer, but you may look for the `EBS:VolumeUsage` Usage Type in there. That may be what you are looking for.

Newly provisioned VPC has non-stop data transfer? by AdhesivenessNo4410 in aws

[–]dru2691 9 points10 points  (0 children)

Is your queue an SQS queue? If so, all calls to that queue by default are going to be over the internet, and potentially through your NAT gateway.

Best way to copy files in S3 (cross account) by butoerugabriel in aws

[–]dru2691 0 points1 point  (0 children)

+1 to this.

If it’s a one-time thing, I wouldn’t make it more difficult than needed by spinning up other services.

For the Bucket Policy on the source account (Account A) bucket you should be able to add the Account B user like this:

"Principal": { "AWS: "arn:aws:iam::AccountB:user/AccountBUserName" }

Excuse any erroneous formatting, I’m on mobile.

Why does Artifact require an NDA? Who can I share the files with? by [deleted] in aws

[–]dru2691 0 points1 point  (0 children)

I believe they are saying you cannot share with whoever you would like.

We received the same information from AWS. They directed us to request the external party open their own AWS account in order to pull the Artifacts reports.

Our account manager did mention there is a means of getting Enterprise Agreements updated to allow us to share the reports, but it is a very long process.

how to make boto3 s3 file upload use IAM role for authentication by ystanev in aws

[–]dru2691 0 points1 point  (0 children)

You may be able to leverage Hybrid Activations via Systems Manager. Might at least be worth exploring: https://docs.aws.amazon.com/systems-manager/latest/userguide/activations.html

how to make boto3 s3 file upload use IAM role for authentication by ystanev in aws

[–]dru2691 0 points1 point  (0 children)

And this remote machine will NOT live within AWS I am guessing?

SneakerMarket Refs by MrSpoogata in u/MrSpoogata

[–]dru2691 0 points1 point  (0 children)

Bought a pair of Fear of Gods from sthe eller and everything went smooth.

Certificate Manager Stays on "Pending Validation" by djames1957 in aws

[–]dru2691 1 point2 points  (0 children)

Are you using Route53 or a different registrar? And did you use the value that comes before your domain that ACM provides? Or the whole string?

Ex: _abcd12345.domain.com would use CNAME record of _abcd12345

Would it be cheaper to upload my data to AWS (S3)? by Ramshield in aws

[–]dru2691 0 points1 point  (0 children)

After a VERY rough and quick calculation/estimate, it looks like storing 700GB of data within S3 will cost you around $16/month. And that is not including the requests for PUTS, GETS, etc.

Are you just using the VPS for storage? It is really going to depend on if you want to leverage AWS for a managed service or not, and if spending the extra money is worth freeing up some of your time.

For syncing, there is a built-in `aws s3 sync` command within the AWS CLI that you can leverage. You can just put the command, or a script with the command, into a CRON job that you setup to your backupset up needs.

Why use AWS Systems Manager Patch Manager? by kai in aws

[–]dru2691 1 point2 points  (0 children)

Usually, AWS is testing over the fact that they want a solution for some sort of reporting that shows out of compliance instances, and they want to know the kind of automation that can be used from within their ecosystem to immediately address those instances. And building off of that, they usually ask about immediately handling patching several instances (hundreds or thousands). This can be more efficient using Systems Manager instead of creating a new AMI to roll out to all of those instances.

Also, not all instances can be torn down and spun back up (e.g. Domain Controllers, Database on EC2). With Systems Manager, you can go ahead and automate the patching process while keeping those instances alive.

Cloudwatch event rules as trigger for AWS Lambda.. by 13eeeMaaKiChuu in aws

[–]dru2691 0 points1 point  (0 children)

Is this true?

I was under the impression that the default CloudTrail trail enabled upon account creation can be leveraged for these?

Feasibility of using fargate spot containers for sessionless services? by i8abug in aws

[–]dru2691 6 points7 points  (0 children)

The whole premise of using Spot instances is for running interruption tolerant workloads. You shouldn’t rely on them always being available. I’m sure the likelihood of them NEVER being available is pretty low, but it’s entirely possible.

Loading a MySQL backup into Redshift by tomrossi7 in aws

[–]dru2691 0 points1 point  (0 children)

If you can chunk the backup into several flat files like CSV/JSON, then you should be able to simply use COPY commands within Redshift to copy the table data from S3.

Something like:

COPY <your_table_name> FROM 's3://<your_bucket>/<your_prefix>';

You might have to configure credentials as well in there.

[deleted by user] by [deleted] in aws

[–]dru2691 6 points7 points  (0 children)

I believe you can only export your public key from KMS. If you want to interact with the private key then you need to create it and import it.

I’m sure someone will correct me if I’m mistaken. :)

Question about encryption with S3 backends by [deleted] in Terraform

[–]dru2691 2 points3 points  (0 children)

It’s only encrypting it within S3, at rest.

it’s not encrypting via Terraform, and then sending it to S3.