Skip to content

Commit

Permalink
fix(terraform): remove unnecessary line in main.tf for cleaner code
Browse files Browse the repository at this point in the history
fix(terraform): specify exact required version in terraform.tf for better version control
The unnecessary line in main.tf was removed to make the code cleaner and easier to read. The required version in terraform.tf was changed from ">= 1.6.0" to "1.6.4" to ensure that the terraform scripts are run with the exact version they were tested with, reducing the risk of version-related issues.
  • Loading branch information
robinmordasiewicz committed Nov 19, 2023
1 parent 23fedb5 commit 2b6cb5f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/*
This terraform plan will create a fortigate VM in azure without any public ip address.
Adjust settings in variables.tf
*/
2 changes: 1 addition & 1 deletion terraform/terraform.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.6.0"
required_version = "1.6.4"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
Expand Down

0 comments on commit 2b6cb5f

Please sign in to comment.