This commit is contained in:
Anthony Howe 2021-03-31 19:47:46 -04:00 коммит произвёл GitHub
Родитель 7b8eba9b0e
Коммит f0f477ec29
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -20,5 +20,5 @@ output "cachewarmer_manager_bootstrap_script_path" {
output "module_depends_on_id" {
description = "the id(s) to force others to wait"
value = null_resource.build_cachewarmer_bootstrap.id
value = null_resource.build_cachewarmer_bootstrap[0].id
}

Просмотреть файл

@ -1,4 +1,4 @@
output "module_depends_on_id" {
description = "the id(s) to force others to wait"
value = null_resource.install_cachewarmer_manager.id
value = null_resource.install_cachewarmer_manager[0].id
}

Просмотреть файл

@ -1,4 +1,4 @@
output "module_depends_on_id" {
description = "the id(s) to force others to wait"
value = null_resource.cachewarmer_submitjob.id
value = null_resource.cachewarmer_submitjob[0].id
}