27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'lib/dependabot/terraform/file_updater.rb', line 27
def updated_dependency_files
updated_files = []
[*terraform_files, *terragrunt_files].each do |file|
next unless file_changed?(file)
updated_content = updated_terraform_file_content(file)
raise "Content didn't change!" if updated_content == file.content
updated_file = updated_file(file: file, content: updated_content)
updated_files << updated_file unless updated_files.include?(updated_file)
end
updated_lockfile_content = update_lockfile_declaration(updated_files)
if updated_lockfile_content && T.must(lockfile).content != updated_lockfile_content
updated_files << updated_file(file: T.must(lockfile), content: updated_lockfile_content)
end
updated_files.compact!
raise "No files changed!" if updated_files.none?
updated_files
end
|