Skip to content

Commit

Permalink
chore: major version bump to 3.0.0 (#86)
Browse files Browse the repository at this point in the history
Signed-off-by: Salim Afiune Maya <[email protected]>
  • Loading branch information
afiune authored Dec 19, 2023
1 parent aca6da9 commit 1c07b99
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,24 @@ essentialcontacts.googleapis.com
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.14.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | >= 4.4.0, < 5.0.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | >= 4.4.0 |
| <a name="requirement_lacework"></a> [lacework](#requirement\_lacework) | ~> 1.0 |
| <a name="requirement_time"></a> [time](#requirement\_time) | ~> 0.6 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_google"></a> [google](#provider\_google) | >= 4.4.0, < 5.0.0 |
| <a name="provider_lacework"></a> [lacework](#provider\_lacework) | ~> 2.0 |
| <a name="provider_google"></a> [google](#provider\_google) | >= 4.4.0 |
| <a name="provider_lacework"></a> [lacework](#provider\_lacework) | ~> 1.0 |
| <a name="provider_random"></a> [random](#provider\_random) | n/a |
| <a name="provider_time"></a> [time](#provider\_time) | ~> 0.6 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_lacework_cfg_svc_account"></a> [lacework\_cfg\_svc\_account](#module\_lacework\_cfg\_svc\_account) | lacework/service-account/gcp | ~> 1.0 |
| <a name="module_lacework_cfg_svc_account"></a> [lacework\_cfg\_svc\_account](#module\_lacework\_cfg\_svc\_account) | lacework/service-account/gcp | ~> 2.0 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.4-dev
3.0.0-dev
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ provider "lacework" {}
module "gcp_project_level_config" {
source = "lacework/config/gcp"
version = "~> 2.0"
version = "~> 3.0"
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ provider "lacework" {}
module "gcp_project_level_config" {
source = "lacework/config/gcp"
version = "~> 2.0"
version = "~> 3.0"
use_existing_service_account = true
service_account_name = "my-service-account"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ provider "lacework" {}
module "gcp_organization_level_config" {
source = "lacework/config/gcp"
version = "~> 2.0"
version = "~> 3.0"
# Set this integration to be created at the Organization level,
# a project id is needed since Lacework needs to deploy a few
Expand Down
2 changes: 1 addition & 1 deletion examples/organization-level-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ provider "lacework" {}
module "gcp_organization_level_config" {
source = "lacework/config/gcp"
version = "~> 2.0"
version = "~> 3.0"
# Set this integration to be created at the Organization level,
# a project id is needed since Lacework needs to deploy a few
Expand Down
2 changes: 1 addition & 1 deletion examples/project-level-config-multi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ variable "projects" {
module "gcp_project_config" {
source = "lacework/config/gcp"
version = "~> 2.0"
version = "~> 3.0"
for_each = var.projects
project_id = each.key
Expand Down
2 changes: 1 addition & 1 deletion examples/project-level-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ provider "lacework" {}
module "gcp_project_level_config" {
source = "lacework/config/gcp"
version = "~> 2.0"
version = "~> 3.0"
project_id = "my-project-id"
}
```
Expand Down

0 comments on commit 1c07b99

Please sign in to comment.