Skip to content

Commit

Permalink
chore(deps): update all minor dependencies (#527)
Browse files Browse the repository at this point in the history
* chore(deps): update all minor dependencies

* fix: make docs

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Pat Heard <[email protected]>
  • Loading branch information
renovate[bot] and patheard authored Jul 2, 2024
1 parent f1ab5ef commit b1289df
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion S3_scan_object/examples/existing_policy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "random_id" "upload_bucket" {
}

module "upload_bucket" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.5.1"
bucket_name = "an-existing-upload-bucket-${random_id.upload_bucket.hex}"
billing_tag_value = "terratest"

Expand Down
4 changes: 2 additions & 2 deletions S3_scan_object/examples/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resource "random_id" "upload_bucket" {
}

module "upload_bucket_one" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.5.1"
bucket_name = "an-existing-upload-bucket-${random_id.upload_bucket.hex}"
billing_tag_value = "terratest"

Expand All @@ -24,7 +24,7 @@ module "upload_bucket_one" {
}

module "upload_bucket_two" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.5.1"
bucket_name = "another-existing-upload-bucket-${random_id.upload_bucket.hex}"
billing_tag_value = "terratest"

Expand Down
4 changes: 2 additions & 2 deletions athena_access_logs/examples/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "random_pet" "buckets" {
# the S3 buckets that your access logs are being sent to.
#
module "access_logs" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.5.1"
bucket_name = "terraform-modules-simple-access-logs-${random_pet.buckets.id}"
force_destroy = true
billing_tag_value = "Terratest"
Expand All @@ -32,7 +32,7 @@ module "access_logs" {
# Hold the Athena data
#
module "athena_bucket" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.5.1"
bucket_name = "terraform-modules-simple-athena-bucket-${random_pet.buckets.id}"
force_destroy = true
billing_tag_value = "Terratest"
Expand Down
2 changes: 1 addition & 1 deletion cds_conformance_pack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ No requirements.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_s3"></a> [s3](#module\_s3) | github.com/cds-snc/terraform-modules//S3 | v9.4.11 |
| <a name="module_s3"></a> [s3](#module\_s3) | github.com/cds-snc/terraform-modules//S3 | v9.5.1 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion cds_conformance_pack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
resource "random_uuid" "bucket_suffix" {}

module "s3" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.5.1"
bucket_name = "cds-conformance-pack-${random_uuid.bucket_suffix.result}"
billing_tag_value = var.billing_tag_value
}
Expand Down
2 changes: 1 addition & 1 deletion rds_activity_stream/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ No requirements.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_activity_stream_bucket"></a> [activity\_stream\_bucket](#module\_activity\_stream\_bucket) | github.com/cds-snc/terraform-modules//S3 | v9.4.11 |
| <a name="module_activity_stream_bucket"></a> [activity\_stream\_bucket](#module\_activity\_stream\_bucket) | github.com/cds-snc/terraform-modules//S3 | v9.5.1 |

## Resources

Expand Down
4 changes: 2 additions & 2 deletions rds_activity_stream/examples/async_stream/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "async_stream" {
# Network
#
module "vpc" {
source = "github.com/cds-snc/terraform-modules//vpc?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//vpc?ref=v9.5.1"
name = "async-stream"

enable_flow_log = true
Expand All @@ -30,7 +30,7 @@ module "vpc" {
# Database
#
module "database" {
source = "github.com/cds-snc/terraform-modules//rds?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//rds?ref=v9.5.1"
name = "async-stream"

database_name = "test"
Expand Down
2 changes: 1 addition & 1 deletion rds_activity_stream/kinesis.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ resource "random_string" "bucket_suffix" {
}

module "activity_stream_bucket" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.5.1"
bucket_name = "${var.rds_stream_name}-${local.resource_name_suffix}-${random_string.bucket_suffix.result}"
billing_tag_value = var.billing_tag_value

Expand Down
2 changes: 1 addition & 1 deletion sentinel_alert_rule/examples/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.108.0"
version = "3.109.0"
}

random = {
Expand Down
58 changes: 29 additions & 29 deletions terraform/.terraform.lock.hcl

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

2 changes: 1 addition & 1 deletion terraform/iam_oidc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ locals {
}

module "test_role" {
source = "github.com/cds-snc/terraform-modules//gh_oidc_role?ref=v9.4.11"
source = "github.com/cds-snc/terraform-modules//gh_oidc_role?ref=v9.5.1"
billing_tag_value = var.billing_code
roles = [
{
Expand Down

0 comments on commit b1289df

Please sign in to comment.