replace null_resource with terraform_data

This commit is contained in:
Rishav Dhar 2023-10-05 21:11:17 +01:00 committed by GitHub
parent e192cfcbae
commit 52be3901fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,3 @@
resource "null_resource" "null" {
triggers = {
value = timestamp()
}
resource "terraform_data" "replacement" {
triggers_replace = timestamp()
}