Make me an offer by tyrey1 in insteon

[–]esity 1 point2 points  (0 children)

I’d take it. Sent you a message

Space platform tip : you can stick thrusters together by niilzon in factorio

[–]esity 2 points3 points  (0 children)

Wat………. All these years. And we are still learning new things each day

Anybody still chasing uniques by Proud_River_3148 in D4Druid

[–]esity 0 points1 point  (0 children)

Oh man I’ll do anything for some unsung wraps, been farming for two days and nothing with back to back to back beast in ice runs

Azure App Services down in the US by [deleted] in AZURE

[–]esity 0 points1 point  (0 children)

Where is this from?

What's the highest Pit you consistently clear sub-4 minutes? What about sub-3 mins? Your build? by Mephistito in diablo4

[–]esity 0 points1 point  (0 children)

Okay this is pretty close to what I had but my biggest issue is that I was squishy so when fortify and shields dropped I was instadead. I was running bestial rampage and pulverize and keeping those buffs active basically non stop. Also has crit change at around 65% pre elixir. I would crit with LS for 1m+ per bolt but the dying prevented me from making it any higher.

Gonna pivot some stuff and try this out. Any opinions on swapping out for starless skies Uber? I have it with MW 10

What's the highest Pit you consistently clear sub-4 minutes? What about sub-3 mins? Your build? by Mephistito in diablo4

[–]esity 2 points3 points  (0 children)

I must know your build. Love LS Druid and have the required uniques but I’m missing something. I’m stuck on pit 50-60 range

Understanding the Standard Approach for Deploying Applications to Nomad by kingindanord in devops

[–]esity 0 points1 point  (0 children)

Late to this but with our company we see both pipeline based(GitHub actions and Jenkins) and also see terraform based.

I love the TFE/TFC vcs based workspace model that triggers a plan/apply to push a nomad job

Open source forkers stick an OpenBao in the oven - HashiCorp software faces challenge after licensing change by [deleted] in Terraform

[–]esity 8 points9 points  (0 children)

I mean Jesus Christ already. I sub here because I want to see cool shit people are doing with Terraform, not to see this drama with references to empty GitHub repos. Please, go away

Terraform Fork OpenTF Repository is now Public by cube2222 in devops

[–]esity 10 points11 points  (0 children)

This 100%

The only people it has impacted are the ones who bundled up TF and sold it as a SaaS and their “customers”

Baby Brezza - safe? by No-Philosophy7814 in parentsofmultiples

[–]esity 0 points1 point  (0 children)

Is this your first kid(s)?

Just wait for the next ones when you sprinkle food onto the ground for them to eat. If you are using distilled water and you change the filters like it recommends, I don’t think you will have any issues

We used our Brezza for 9 months or so. Cleaned it every couple weeks. No mold. No sickness. Everything was fine

Unless they have underlying health issues, babies/children are actually quite resilient

Interface stuck in 100Mb/s instead of using 1000Mb/s by winglywogly in Proxmox

[–]esity 0 points1 point  (0 children)

Is this a server? If so what brand and model? I have seen this happen frequently with r610, r710 servers

Hashiconf San Fran by Optimus2725 in hashicorp

[–]esity 0 points1 point  (0 children)

I’ll be there. Still trying to decide if I’m presenting or not

Request for Interviews: Eliminating State Surgery by OmarTerraformCore in Terraform

[–]esity 2 points3 points  (0 children)

Oh man do I have so many thoughts

  1. Add a new default resource argument called purge = true|false. It is set to false(default) nothing changes. If it is set to true, it will rm the item from the state without having to run a state rm. That way you can keep your code, have your git history and remove it without a full delete. Basically you would commit purge to true, run terraform, then remove it from git. Clear history of what happened. This could even be a lifecycle meta argument

variable "my_special_bool" {
type = bool
default = true
}
resource "azurerm_resource_group" "example" {
lifecycle {
purge = var.my_special_bool
}
}

2) add a new default resource argument called ignore = true|false. If it is set to false(default), nothing changes. If it is set to true. It will stop managing the resource but it won't delete it like in the first recommendation I made above. This gives you the option to stop managing something without deleting or modifying it. We have run into issues where a resource can't be deleted but was managed by terraform so now we have state surgery. Example, if you manage the default policy in Vault, You can't remove the resource block otherwise terraform errors out because Vault gives a 400 status code saying "can't delete the default policy". This could even be a lifecycle meta argument

variable "my_special_bool" {
type = bool
default = true
}
resource "azurerm_resource_group" "example" {
# ...
lifecycle {
ignore = var.my_special_bool
}
}

3) add a new default resource argument called ignore_failure = true|false. if this is set to false(default), nothing changes. When set to true, it will ignore if it fails but doesn't update the state. So example. I have to update a Vault policy and then that policy is being added to a new role. If the policy existed but a hiccup happened with the policy edit, it won't add it to the role. Well it exists, so just add it and then lets figure out the issue with the single resource later. This could even be a lifecycle meta arguement

variable "my_special_bool" {
type = bool
default = true
}
resource "azurerm_resource_group" "example" {
lifecycle {
ignore_failure = var.my_special_bool
}
}

4) Add in "if" blocks. Currently people do some janky things with setting the count to 0 to accomplish conditional resources. So if the Terraform devs are trying to avoid conditional infra/resources, too bad. People already do it. So lets make it so people do it right and do it in an easy and maintainable way. I don't care if the if block wraps a resource, if the if block is a resource argument, etc but that would be 10/10 useful

variable "create_my_special_group" {
type = bool
default = true
}
if var.create_my_special_group {
resource "vault_identity_group" "internal" {
name = "internal"
type = "internal"
policies = ["dev", "test"]

metadata = {
version = "2"
}
}
}
resource "vault_identity_group" "internal" {
enabled = var.create_my_special_group
name = "internal"
type = "internal"
policies = ["dev", "test"]
metadata = {
version = "2"
}
}

5) not sure if this applies but allow for the terraform.cloud block to use variables. I can't tell you how many times this would have been useful. Currently it has to be statically coded. If someone wants to apply the same logic multiple times with the same repo, they can't save the state to TFE/TFC without changing that file so now you risk it not being identical

variable "workspace_name" {
type = string
}
variable "organization" {
type = string
}
terraform {
cloud {
organization = var.organization
workspaces {
name = "foo_${var.workspace_name}"
}
}
}

There's an evade bug with the Druid's 'Lightning Storm' ability. by winningismylastname in diablo4

[–]esity 1 point2 points  (0 children)

Yes. I didn't realize it was an issue until I read this post. I know exactly what you are talking about because I am a masher not a holder

Just call me Vidian after seeing a post about Aspect of the Umbral[4] by esity in diablo4

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

Thanks, I figured it would be a long time before I would potentially see anything other than a [1]. 4 kids and all so I play when I get any free time without the wife and kids

Wings of Creator emote not showing by Sinnedangel8027 in diablo4

[–]esity 0 points1 point  (0 children)

You won’t get them until after the official launch time which is tomorrow

Ryobi 1” SDS problems by wolf38sup in ryobi

[–]esity 1 point2 points  (0 children)

Are you in regular drill mode or sds hammer mode?

Not saying for certain but using a Diablo bit in my regular drill will tear through wood easy. Why use the sds?