summaryrefslogtreecommitdiff
path: root/spec/fixtures/terraform/multiple_providers/main.tf
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/terraform/multiple_providers/main.tf')
-rw-r--r--spec/fixtures/terraform/multiple_providers/main.tf12
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/fixtures/terraform/multiple_providers/main.tf b/spec/fixtures/terraform/multiple_providers/main.tf
new file mode 100644
index 0000000..e2e0818
--- /dev/null
+++ b/spec/fixtures/terraform/multiple_providers/main.tf
@@ -0,0 +1,12 @@
+terraform {
+ required_providers {
+ aws = {
+ source = "hashicorp/aws"
+ version = "~> 3.27"
+ }
+ azure = {
+ source = "hashicorp/azurerm"
+ version = "~> 2.1"
+ }
+ }
+}