Skip to content

Commit

Permalink
Casperify terraform.required_providers blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 authored Mar 15, 2022
1 parent c93a0f1 commit abd6742
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
5 changes: 1 addition & 4 deletions docs/guides/permissions/aws/main.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.3.0"
}
aws = { source = "hashicorp/aws", version = "~> 4.3.0" }
}
}

Expand Down
10 changes: 2 additions & 8 deletions docs/guides/permissions/az/main.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
terraform {
required_providers {
azuread = {
source = "hashicorp/azuread"
version = "~> 2.18.0"
}
azurerm = {
source = "hashicorp/azurerm"
version = "~> 2.98.0"
}
azuread = { source = "hashicorp/azuread", version = "~> 2.18.0" }
azurerm = { source = "hashicorp/azurerm", version = "~> 2.98.0" }
}
}

Expand Down
5 changes: 1 addition & 4 deletions docs/guides/permissions/gcp/main.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.12.0"
}
google = { source = "hashicorp/google", version = "~> 4.12.0" }
}
}

Expand Down

0 comments on commit abd6742

Please sign in to comment.