Files
Alvand-P/lib/tasks/terraform.rake
2026-08-13 19:42:08 +03:30

17 lines
422 B
Ruby

namespace :terraform do
desc 'Initialize the Terraform configuration'
task :init do
Dir.chdir('terraform') { sh 'terraform init' }
end
desc 'Apply the Terraform configuration'
task :apply => ['render:config', :init] do
Dir.chdir('terraform') { sh 'terraform apply' }
end
desc 'Destroy the Terraform infrastructure'
task :destroy do
Dir.chdir('terraform') { sh 'terraform destroy' }
end
end