From 79fbd17b38102526bf481c4d2cdf0efdc49eaba5 Mon Sep 17 00:00:00 2001 From: Eesaan Atluri <atlurie@uab.edu> Date: Tue, 21 Feb 2023 20:49:47 +0530 Subject: [PATCH] Add missing provider information due to upgrade in TF version. --- ohpc-instance/main.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ohpc-instance/main.tf b/ohpc-instance/main.tf index 4f403bf..71a9b01 100644 --- a/ohpc-instance/main.tf +++ b/ohpc-instance/main.tf @@ -1,4 +1,14 @@ # is created in external-network module and called in root module +terraform { +required_version = ">= 0.14.0" + required_providers { + openstack = { + source = "terraform-provider-openstack/openstack" + version = "~> 1.42.0" + } + } +} + variable "external_subnet_id" {type = string} variable "ohpc_instance_name" {} -- GitLab