Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
v1.6.5 checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
doherty100 committed Jan 25, 2021
1 parent 4ba73d7 commit 4e233a1
Show file tree
Hide file tree
Showing 15 changed files with 162 additions and 85 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This repository contains a collection of inter-dependent [cloud computing](https
* [git](https://git-scm.com/) for source control.
* [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/what-is-azure-cli?view=azure-cli-latest) is a command line interface for Azure.
* [Terraform](https://www.terraform.io/intro/index.html#what-is-terraform-) v0.14.5 for [Infrastructure as Code](https://en.wikipedia.org/wiki/Infrastructure_as_code) (IaC).
* [Azure Provider](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs) (azuerrm) v2.44
* [Azure Provider](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs) (azuerrm) v2.43
* [Random Provider](https://registry.terraform.io/providers/hashicorp/random/latest/docs) (random) v3.0.1

Miscellaneous quick starts are also provided for other functionality. This repo was created by [Roger Doherty](https://www.linkedin.com/in/roger-doherty-805635b/).
Expand Down
25 changes: 13 additions & 12 deletions terraform-azurerm-bench-windows/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions terraform-azurerm-bench-windows/10-common.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Pin to azurerm version v2.43.0 while waiting bug fix for https://github.com/terraform-providers/terraform-provider-azurerm/issues/10292
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.43.0"
}
}
}

provider "azurerm" {
features {}
subscription_id = var.subscription_id
Expand Down
25 changes: 13 additions & 12 deletions terraform-azurerm-sql/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions terraform-azurerm-sql/10-common.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Pin to azurerm version v2.43.0 while waiting bug fix for https://github.com/terraform-providers/terraform-provider-azurerm/issues/10292
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.43.0"
}
}
}

provider "azurerm" {
features {}
subscription_id = var.subscription_id
Expand Down
25 changes: 13 additions & 12 deletions terraform-azurerm-vm-linux/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions terraform-azurerm-vm-linux/10-common.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Pin to azurerm version v2.43.0 while waiting bug fix for https://github.com/terraform-providers/terraform-provider-azurerm/issues/10292
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.43.0"
}
}
}

provider "azurerm" {
features {}
subscription_id = var.subscription_id
Expand Down
25 changes: 13 additions & 12 deletions terraform-azurerm-vm-windows/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions terraform-azurerm-vm-windows/10-common.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Pin to azurerm version v2.43.0 while waiting bug fix for https://github.com/terraform-providers/terraform-provider-azurerm/issues/10292
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.43.0"
}
}
}

provider "azurerm" {
features {}
subscription_id = var.subscription_id
Expand Down
25 changes: 13 additions & 12 deletions terraform-azurerm-vnet-shared/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions terraform-azurerm-vnet-shared/10-common.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Pin to azurerm version v2.43.0 while waiting bug fix for https://github.com/terraform-providers/terraform-provider-azurerm/issues/10292
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.43.0"
}
}
}

provider "azurerm" {
features {}
subscription_id = var.subscription_id
Expand Down
25 changes: 13 additions & 12 deletions terraform-azurerm-vnet-spoke/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions terraform-azurerm-vnet-spoke/10-common.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Pin to azurerm version v2.43.0 while waiting bug fix for https://github.com/terraform-providers/terraform-provider-azurerm/issues/10292
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.43.0"
}
}
}

provider "azurerm" {
features {}
subscription_id = var.subscription_id
Expand Down
25 changes: 13 additions & 12 deletions terraform-azurerm-vwan/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions terraform-azurerm-vwan/10-common.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Pin to azurerm version v2.43.0 while waiting bug fix for https://github.com/terraform-providers/terraform-provider-azurerm/issues/10292
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.43.0"
}
}
}

provider "azurerm" {
features {}
subscription_id = var.subscription_id
Expand Down

0 comments on commit 4e233a1

Please sign in to comment.