If you’re running containers you’ll want some kind of container management - but I’ve been fine with ECS for running on AWS. It’s well integrated, standard enough, configurable via OpenTofu/Terraform/CloudFormation etc and free for container hosts running in AWS
Octopus have started doing things like connecting properties in the north to cellular type meters (not supposed to) or using Octopus Mini hubs (connects smart meters using WiFi) as a way of trying to solve the problems
SSO all the way (if you can). Chances are you've got Google Workspace or Microsoft 365 - both allow you to configure SAML based SSO into many SaaS apps either through their respective app galleries or some kind of custom configuration. Otherwise you could look at Okta, but be prepared to fork out serious cash. We use Entra ID (part of Microsoft 365) for SSO in our business, and it generally works well.
There'll be times that employees can't use SSO though. For that I'll add my voice to 1Password - it's well designed such that a breach of the 1PW service itself won't reveal credentials (you'd need peoples vault passwords and secret keys for that). Avoid Lastpass - the UI is awful, and they've been breached in the past.
That's pretty awful on Lastpass's behalf. 1Password does this much better - your account is frozen in such that you can't add new passwords or make changes, but you can still read your data:
Curious to see how this would be deployed in the wild. A sneaky way would be to add this as an extension to existing Lambdas - it could run in parallel any time such a Lambda is invoked, and continue even after an initial response until the timeout for the function is reached.
> Remember this does not only mean team sports, there is more to the world than what school PE exposed us to, there will definitely be something out there that interests you.
My biggest bugbear about school PE is the focus on team sports. I know some schools want to build their sports teams, but if there is one goal of PE class it should be ensuring every child finds at least 1 form of exercise they really enjoy.
I’d encourage you to persist in finding something you can get into and stick with. I’ve really got into obstacle course racing events like Tough Mudder and started with the shortest distance - everyone there is helping everyone else through it. Find what works for you.
The UK also has credit scores, although they’re not the sole factor in acceptance for credit. Experian, Equifax and Transunion all have their own individual scoring systems with different scales - I’m not aware of a standard like Fico here.
As for shutting down accounts affecting scores - most scores factor in credit utilisation %. Maxing out a credit card can indicate that a borrower is having problems making repayments, so keeping utilisation under around 30% is helpful for a good score. Closing old accounts reduces access to credit, so the utilisation % increases.
Whilst competition has been pretty slow to improve speeds, there are an increasing number of altnets around the UK with small providers running their own FTTP networks. This is even happening in rural locations through organizations like B4RN. I wish it would move faster, but I'm glad that we have some competition - Corbynband would likely have nuked other providers, and I can only imagine the kind of filtering that would get applied to it. Hopefully good ISPs like Andrews & Arnold can stick around.
It's suggested in the first article that the pilot had failed to pass the necessary exams:
"The other side of the story here is that the pilot has spent the past six years completing a two year training course, and still hasn’t passed any of the tests necessary to become a pilot. The airline became fed up, and since they’re firing pilots anyway and trying to cut costs, they also decided to terminate their contract with her at this point."
>> There is a review phase of course and it's very important because it might do anything. Anybody who's had to use terraform can attest that it is scary to run.
This is no worse than Ansible - if for a set of EC2 instances the user "set to 0 to delete them" then Ansible will blindly do as requested and be just as destructive. On the other hand:
* Terraform does its best to enforce the recommended plan/apply workflow - the plan is always presented before any changes are made, and auto-approval is strongly discouraged.
* There are multiple options for review - do it there and then, or store the plan as an artefact and share with others for review.
* It doesn't matter when you run a stored plan - the plan is the set of changes that will be applied regardless of current state.
* The summary makes very clear if anything is going to be destroyed in bright red text.
Ansible offers some visibility of what it will do with dry runs, although it's not as complete - there's no way to guarantee it will do the same thing next time if changes have been made in the interim.
I'm not sure why you've had problems with Terraform trying to nuke things - I'd say the planning capability was one of its strong points. A quick glance at the plan will tell you what it needs to remove to put an environment in the expected state (and it's called out again in the destroy count summary at the end of then plan). Terraform doesn't "accidentally" delete things - it's doing it because you've told it they're not needed anymore.
Unfortunately this is true - the Terraform AWS provider has thousands of PRs closed (and hundreds still open) as proof. Nevertheless, things seem to get support quicker in Terraform than in CloudFormation.
TLDW; You can do resource management (e.g. creating EC2 instances in AWS) and deployment (e.g. installing packages on an instance) through both Terraform and Ansible. Terraform is best used for resource management - the documentation states using the "provisioning"/deployment function is a last resort. Ansible is great at deploying packages but less so at resource management for the reasons you'll see in the other comments. Either use them together for what they're good at, or use Terraform to do resource management and other techniques (such as prebuilt images) for deployment: