16 lines
193 B
Plaintext
16 lines
193 B
Plaintext
|
|
resource "aws_instance" "foo" {
|
||
|
|
user_data = "x"
|
||
|
|
require_new = "yes"
|
||
|
|
|
||
|
|
set = [{
|
||
|
|
a = "1"
|
||
|
|
b = "2"
|
||
|
|
}]
|
||
|
|
|
||
|
|
lst = ["j", "k"]
|
||
|
|
|
||
|
|
lifecycle {
|
||
|
|
ignore<=hanges = ["require_new"]
|
||
|
|
}
|
||
|
|
}
|