Skip to content

Commit

Permalink
chore: upgrade azurerm to v4 (#121)
Browse files Browse the repository at this point in the history
Signed-off-by: Lei Jin <lei.jin@lacework.net>
  • Loading branch information
leijin-lw authored Oct 8, 2024
1 parent cb3e95e commit dfc6d0b
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ It configures a Diagnostic Setting that puts logs in an storage account, from wh
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.14 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.115 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 4.0 |
| <a name="requirement_lacework"></a> [lacework](#requirement\_lacework) | ~> 1.18 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.1 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | ~> 3.115 |
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | ~> 4.0 |
| <a name="provider_lacework"></a> [lacework](#provider\_lacework) | ~> 1.18 |
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.1 |
| <a name="provider_time"></a> [time](#provider\_time) | n/a |
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.1-dev
3.0.0-dev
2 changes: 1 addition & 1 deletion examples/all-subscriptions-in-tenant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
all_subscriptions = true
}
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-activity-log/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
application_name = "my-custom-application-name"
lacework_integration_name = "custom name"
prefix = "customprefix"
Expand Down
4 changes: 2 additions & 2 deletions examples/default-activity-log/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
}
```

Expand All @@ -39,7 +39,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
subscription_ids = [
"00000000-0000-0000-0000-000000000000", // The default subscription
"00000000-0000-0000-0000-000000000001",
Expand Down
2 changes: 1 addition & 1 deletion examples/existing-diagnostic-settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
use_existing_diagnostic_settings = true
diagnostic_settings_name = "diagnostic-settings-name"
Expand Down
2 changes: 1 addition & 1 deletion examples/existing-storage-account/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
use_existing_storage_account = true
storage_account_name = "storageaccountname"
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-subscriptions-in-tenant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
subscription_ids = [
"00000000-0000-0000-0000-000000000000",
Expand Down
4 changes: 2 additions & 2 deletions examples/multiple-tenants/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ provider "azurerm" {
}
module "az_activity_log_tenant_1" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
providers = {
azurerm = azurerm.tenant_2
Expand All @@ -30,7 +30,7 @@ provider "azurerm" {
}
module "az_activity_log_tenant_2" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
providers = {
azurerm = azurerm.tenant_2
Expand Down
2 changes: 1 addition & 1 deletion examples/storage-account-network-rules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ provider "lacework" {}
module "az_activity_log" {
source = "lacework/activity-log/azure"
version = "~> 2.0"
version = "~> 3.0"
use_storage_account_network_rules = true
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.14"

required_providers {
azurerm = "~> 3.115"
azurerm = "~> 4.0"
random = ">= 2.1"
lacework = {
source = "lacework/lacework"
Expand Down

0 comments on commit dfc6d0b

Please sign in to comment.