mirror of https://github.com/buildpacks/ci.git
Ignore root_password going away from installing dependencies
Signed-off-by: Javier Romero <rjavier@vmware.com>
This commit is contained in:
parent
0040aef50a
commit
78c1fb2fc4
|
|
@ -104,6 +104,12 @@ resource "null_resource" "dependencies" {
|
|||
provisioner "local-exec" {
|
||||
command = "sleep 20 && ./provision-scripts/wait-for-ssh.sh ${self.triggers.public_ip}"
|
||||
}
|
||||
|
||||
lifecycle {
|
||||
ignore_changes = [
|
||||
triggers["root_password"]
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
###
|
||||
|
|
@ -231,7 +237,6 @@ resource "null_resource" "github_runner" {
|
|||
depends_on = [null_resource.dependencies]
|
||||
}
|
||||
|
||||
|
||||
output "machine_info" {
|
||||
value = {
|
||||
for machine in local.machines :
|
||||
|
|
|
|||
Loading…
Reference in New Issue