github.com/hugorut/terraform@v1.1.3/src/terraform/testdata/apply-cbd-cycle/main.tf (about)

     1  resource "test_instance" "a" {
     2    foo = test_instance.b.id
     3    require_new = "changed"
     4  
     5    lifecycle {
     6      create_before_destroy = true
     7    }
     8  }
     9  
    10  resource "test_instance" "b" {
    11    foo = test_instance.c.id
    12    require_new = "changed"
    13  }
    14  
    15  
    16  resource "test_instance" "c" {
    17    require_new = "changed"
    18  }
    19