Skip to content

Commit abd6742

Browse files
authored
Casperify terraform.required_providers blocks
1 parent c93a0f1 commit abd6742

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

docs/guides/permissions/aws/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
terraform {
22
required_providers {
3-
aws = {
4-
source = "hashicorp/aws"
5-
version = "~> 4.3.0"
6-
}
3+
aws = { source = "hashicorp/aws", version = "~> 4.3.0" }
74
}
85
}
96

docs/guides/permissions/az/main.tf

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
terraform {
22
required_providers {
3-
azuread = {
4-
source = "hashicorp/azuread"
5-
version = "~> 2.18.0"
6-
}
7-
azurerm = {
8-
source = "hashicorp/azurerm"
9-
version = "~> 2.98.0"
10-
}
3+
azuread = { source = "hashicorp/azuread", version = "~> 2.18.0" }
4+
azurerm = { source = "hashicorp/azurerm", version = "~> 2.98.0" }
115
}
126
}
137

docs/guides/permissions/gcp/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
terraform {
22
required_providers {
3-
google = {
4-
source = "hashicorp/google"
5-
version = "~> 4.12.0"
6-
}
3+
google = { source = "hashicorp/google", version = "~> 4.12.0" }
74
}
85
}
96

0 commit comments

Comments
 (0)