mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 12:42:58 -06:00
edbc84420c
When a user runs `terraform refresh` we give them an error message that tells them to run `terraform apply -refresh-state`. We could just run that command for them, though. That is what this PR does.
7 lines
117 B
HCL
7 lines
117 B
HCL
resource "random_pet" "always_new" {
|
|
keepers = {
|
|
uuid = uuid() # Force a new name each time
|
|
}
|
|
length = 3
|
|
}
|