Skip to content

Commit

Permalink
chore(deps): update all patch dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 26, 2024
1 parent 1793d66 commit e63fbf1
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 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.6.1"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.3"
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.6.1"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.3"
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.6.1"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.3"
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.6.1"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.3"
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.6.1"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.3"
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/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.6.1"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.3"
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 notify_slack/lambda/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==24.8.0
boto3==1.35.0
coverage==7.6.0
coverage==7.6.1
pylint==3.2.6
pytest==8.3.2
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.6.1"
source = "github.com/cds-snc/terraform-modules//vpc?ref=v9.6.3"
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.6.1"
source = "github.com/cds-snc/terraform-modules//rds?ref=v9.6.3"
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.6.1"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.3"
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 schedule_shutdown/lambda/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==24.8.0
boto3==1.35.0
coverage==7.6.0
coverage==7.6.1
pylint==3.2.6
pytest==8.3.2
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.6.1"
source = "github.com/cds-snc/terraform-modules//gh_oidc_role?ref=v9.6.3"
billing_tag_value = var.billing_code
roles = [
{
Expand Down

0 comments on commit e63fbf1

Please sign in to comment.