Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
In terraform, sometimes one resource is created before another due to implicit dependency such as when [...long description here...] .
Answer

the value of an argument in one resource block is derived from the output/creation of another resource

^^^ e.g. when ec2 instace has to be created before elastic ip:

resource "aws_eip" "ip" {
  instance = "${aws_instance.example.id}"
}


Question
In terraform, sometimes one resource is created before another due to implicit dependency such as when [...long description here...] .
Answer
?

Question
In terraform, sometimes one resource is created before another due to implicit dependency such as when [...long description here...] .
Answer

the value of an argument in one resource block is derived from the output/creation of another resource

^^^ e.g. when ec2 instace has to be created before elastic ip:

resource "aws_eip" "ip" {
  instance = "${aws_instance.example.id}"
}


Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.