You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But is a inflexible, as this renders the provider overly complex to use in modules.
e.g.
####module-definitionresource"pass_password""module_a_a" {
path="a"
password "a"
}
resource"pass_password""module_a_b" {
path="b"
password "b"
depends_on [ "pass_password.module_a_a" ]
}
output"last_pass_resource" {
value="${pass_password.module_a_b.path}"# could technically use depends_on, but that has issues too.
}
#### end module definitionmodule"foo" {
source="path-to-module-definition"
}
module"bar" {
source="path-to-module-definition"dummy_param="${module.foo.last_pass_resource}"# as modules don't have depends_on
}
module"baz" {
source="path-to-module-definition"dummy_param="${module.bar.last_pass_resource}"
}
Any chance this could be flagged with a semaphore + wait or similar for each operation?
The chances for race conditions are git commit + push, oftentimes giving a 6+ second window for race conditions to cause this issue?
The text was updated successfully, but these errors were encountered:
example:
results in:
This happens on both create and destroy.
Adding dependency chaining resolves the issue:
But is a inflexible, as this renders the provider overly complex to use in modules.
e.g.
Any chance this could be flagged with a semaphore + wait or similar for each operation?
The chances for race conditions are git commit + push, oftentimes giving a 6+ second window for race conditions to cause this issue?
The text was updated successfully, but these errors were encountered: