Skip to content

Commit

Permalink
Merge pull request #2 from robinmordasiewicz/mkdocs-config-10
Browse files Browse the repository at this point in the history
fix(terraform): remove unnecessary line in main.tf for cleaner code 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 authored Nov 19, 2023
2 parents 23fedb5 + 2b6cb5f commit d46cf86
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 d46cf86

Please sign in to comment.