aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/backends/terraform_aws.rb4
-rw-r--r--app/models/backends/terraform_libvirt.rb4
-rw-r--r--app/views/setup/show.html.erb2
3 files changed, 9 insertions, 1 deletions
diff --git a/app/models/backends/terraform_aws.rb b/app/models/backends/terraform_aws.rb
index 65ca68c..d3d56d1 100644
--- a/app/models/backends/terraform_aws.rb
+++ b/app/models/backends/terraform_aws.rb
@@ -50,6 +50,10 @@ class Backends::TerraformAws < ApplicationRecord
'Amazon Web Services'
end
+ def self.available?
+ File.exist? "#{ENV['PATH'].split(':').first}/terraform-provider-aws"
+ end
+
def type_and_id
"#{self.class.name}=#{id}"
end
diff --git a/app/models/backends/terraform_libvirt.rb b/app/models/backends/terraform_libvirt.rb
index b8bdf13..bbc872a 100644
--- a/app/models/backends/terraform_libvirt.rb
+++ b/app/models/backends/terraform_libvirt.rb
@@ -44,6 +44,10 @@ class Backends::TerraformLibvirt < ApplicationRecord
'libvirt'
end
+ def self.available?
+ File.exist? "#{ENV['PATH'].split(':').first}/terraform-provider-libvirts"
+ end
+
def type_and_id
"#{self.class.name}=#{id}"
end
diff --git a/app/views/setup/show.html.erb b/app/views/setup/show.html.erb
index c3ed3b8..cc1d094 100644
--- a/app/views/setup/show.html.erb
+++ b/app/views/setup/show.html.erb
@@ -24,7 +24,7 @@ License along with the GOV.UK Mini Environment Admin. If not, see
<h1>Backends</h1>
-<% Backends.classes.each do |backend_class| %>
+<% Backends.classes.select(&:available?).each do |backend_class| %>
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">