Skip to content

Commit

Permalink
updating the version to 1.38
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Dec 6, 2019
1 parent 6e616f3 commit ea6a6d8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The AzureRM Provider supports Terraform 0.10.x and later - but Terraform 0.12.x
provider "azurerm" {
# We recommend pinning to the specific version of the Azure Provider you're using
# since new versions are released frequently
version = "=1.36.0"
version = "=1.38.0"
# More information on the authentication methods supported by
# the AzureRM Provider can be found here:
Expand Down
2 changes: 1 addition & 1 deletion website/docs/guides/2.0-upgrade-guide.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ We recommend pinning the version of each Provider you use in Terraform - you can

```hcl
provider "azurerm" {
version = "=1.36.0"
version = "=1.38.0"
}
```

Expand Down
6 changes: 3 additions & 3 deletions website/docs/guides/azure_cli.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ To configure Terraform to use the Default Subscription defined in the Azure CLI
```hcl
provider "azurerm" {
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
version = "=1.36.0"
version = "=1.38.0"
}
```

Expand All @@ -101,7 +101,7 @@ It's also possible to configure Terraform to use a specific Subscription - for e
```hcl
provider "azurerm" {
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
version = "=1.36.0"
version = "=1.38.0"
subscription_id = "00000000-0000-0000-0000-000000000000"
}
Expand All @@ -118,7 +118,7 @@ If you're looking to use Terraform across Tenants - it's possible to do this by
```hcl
provider "azurerm" {
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
version = "=1.36.0"
version = "=1.38.0"
subscription_id = "00000000-0000-0000-0000-000000000000"
tenant_id = "11111111-1111-1111-1111-111111111111"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/guides/migrating-to-azuread.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ As the AzureAD and AzureRM Provider support the same authentication methods - it

```hcl
provider "azurerm" {
version = "=1.36.0"
version = "=1.38.0"
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ The following Provider block can be specified - where `1.21.0` is the version of
```hcl
provider "azurerm" {
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
version = "=1.36.0"
version = "=1.38.0"
}
```

Expand All @@ -125,7 +125,7 @@ variable "client_certificate_password" {}
provider "azurerm" {
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
version = "=1.36.0"
version = "=1.38.0"
subscription_id = "00000000-0000-0000-0000-000000000000"
client_id = "00000000-0000-0000-0000-000000000000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ The following Provider block can be specified - where `1.34.0` is the version of
```hcl
provider "azurerm" {
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
version = "=1.36.0"
version = "=1.38.0"
}
```

Expand All @@ -200,7 +200,7 @@ variable "client_secret" {}
provider "azurerm" {
# Whilst version is optional, we /strongly recommend/ using it to pin the version of the Provider being used
version = "=1.36.0"
version = "=1.38.0"
subscription_id = "00000000-0000-0000-0000-000000000000"
client_id = "00000000-0000-0000-0000-000000000000"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ We recommend using either a Service Principal or Managed Service Identity when r
# Configure the Azure Provider
provider "azurerm" {
# whilst the `version` attribute is optional, we recommend pinning to a given version of the Provider
version = "=1.36.0"
version = "=1.38.0"
}
# Create a resource group
Expand Down

0 comments on commit ea6a6d8

Please sign in to comment.