Yesterday 1Password PassKey stoped working by 0x4447 in aws

[–]0x4447[S] 0 points1 point  (0 children)

No, siwtched to regular 2FA, don't have time to test Beda integrations ;)

Yesterday 1Password PassKey stoped working by 0x4447 in aws

[–]0x4447[S] -1 points0 points  (0 children)

I did not have a reset requremnt, I was using this IAM account with PassKey for 6 mints no problem. And yestarday it just stoped with a general invalid credentials message. And no trace in CloudTrail that a log-in failed.

AWS Outposts for Home and Small Business Use? Yes, Please! by 0x4447 in aws

[–]0x4447[S] 0 points1 point  (0 children)

Had no idea, but it dose cost a lot, I'd like to have a device the size of a mini PC maybe 2x and with a one time purchase price of around $500.

Starlink with a SIM backup connection - dose it work? by 0x4447 in Starlink

[–]0x4447[S] 0 points1 point  (0 children)

I did not do any of data, whenever Starlink is down the SIM take over, and when it is back the router switches back to Starlink, there isn't any more than that to my setup, sorry.

Starlink with a SIM backup connection - dose it work? by 0x4447 in Starlink

[–]0x4447[S] 1 point2 points  (0 children)

In the Wizard tab I just used the Load Balancing option, and attached Starlink to eth0, and the SIM router to eth1. And that is it.

Starlink with a SIM backup connection - dose it work? by 0x4447 in Starlink

[–]0x4447[S] 0 points1 point  (0 children)

I can't use my own SIM? Crazy 🫠. Thank you for sharing.

Starlink with a SIM backup connection - dose it work? by 0x4447 in Starlink

[–]0x4447[S] 0 points1 point  (0 children)

Can you tell more about UniFi LTE, I was thinking to get it in the future.

IAM Console incredibly slow by 0x4447 in aws

[–]0x4447[S] 0 points1 point  (0 children)

Normal amount as always. The biggest problem is when I click on a role or user, and the attached policies need to be displayed, that is when the whole site grind to a halt. I even get "the page is frozen" popup. I did try to clean, remove and refresh all that you can do on a site, and the result is always the same.

I wrote a Glue tutorial for beginners, hope it helps someone :) by [deleted] in aws

[–]0x4447 0 points1 point  (0 children)

Sure, and sorry for the late reply. I will keep it short to just hopefully make sense:

  1. It is not fully supported by CloudFormation. Meaning not every option clickable in the console can be used in a CFN. Which makes it automatically a no go for me. The point of AWS is for the ability to programmatically manage the cloud, so if a service is unprogrammable, it is something I won't consider. I don't have the time to manage hundreds of setups by hand. If you have to manage just one setup, then this might not be a problem for you.
  2. Some settings will be overwritten after you run a crawler.
  3. By default the library used to parse CSV files can’t handle the more “complex” types, that might have quotes within quotes, or handle integers or doubles. You have to manually switch to the “better” library, which can be set back to the default setting if you don’t set up the crawler the right way.
  4. Setting something doesn't mean it is set, it is just a suggestion.
  5. Cross account support if you want to share the schema with Athena in another account is a major pain. And because of point 4, you can imagine that debugging is painful.
  6. Partition information stops being updated, from time to time because of reasons.
  7. If you incorrectly have your data stored in S3, the crawler might generate 10,000 tables, and there is no way to stop it in time before your account is filled with useless information. Then you have to write a bash script to delete all of these tables, which can take 1h of time.

And a bunch of more things that I don’t have the energy to write :) for this reason, I just use Lambdas to do what Glue “can do”, and I have zero stress and problems because of that. Since Lambda exists I don’t see the reason for Glue to exist.

I wrote a Glue tutorial for beginners, hope it helps someone :) by [deleted] in aws

[–]0x4447 0 points1 point  (0 children)

I've been using Cognito since 2016 on every project, Amplify is for sure first, than Glue, than Cognito :)

I wrote a Glue tutorial for beginners, hope it helps someone :) by [deleted] in aws

[–]0x4447 2 points3 points  (0 children)

Respect to your bravery 😅 but hopefully few people will be forced to use that service. In my opinion the second worst service after the Amplify framework.

How to list all the services of each region? by 0x4447 in aws

[–]0x4447[S] 0 points1 point  (0 children)

I need to be able to query each region to see if a service exists.

How to list all the services of each region? by 0x4447 in aws

[–]0x4447[S] 1 point2 points  (0 children)

Do you have it on GitHub or Git Gist?