Skip to content

Commit b59b3c0

Browse files
chore(deps): update tf (#70)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | cloudposse/dynamic-subnets/aws | module | minor | `2.3.0` → `2.4.2` | | cloudposse/kms-key/aws | module | patch | `0.12.1` → `0.12.2` | | cloudposse/vpc/aws | module | minor | `2.1.0` → `2.3.0` | --- ### Configuration 📅 **Schedule**: Branch creation - "after 9am on the first day of the month" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/masterpointio/terraform-aws-ssm-agent). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4xIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsibmVlZHMtcmV2aWV3IiwidGVycmFmb3JtIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a4af6e9 commit b59b3c0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ provider "aws" {
44

55
module "vpc" {
66
source = "cloudposse/vpc/aws"
7-
version = "2.1.0"
7+
version = "2.3.0"
88

99
namespace = var.namespace
1010
stage = var.stage
@@ -16,7 +16,7 @@ module "vpc" {
1616

1717
module "subnets" {
1818
source = "cloudposse/dynamic-subnets/aws"
19-
version = "2.3.0"
19+
version = "2.4.2"
2020
namespace = var.namespace
2121
stage = var.stage
2222

examples/with-names/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider "aws" {
55
# Create VPC and subnets with specific names for demonstration
66
module "vpc" {
77
source = "cloudposse/vpc/aws"
8-
version = "2.1.0"
8+
version = "2.3.0"
99

1010
namespace = var.namespace
1111
stage = var.stage
@@ -17,7 +17,7 @@ module "vpc" {
1717

1818
module "subnets" {
1919
source = "cloudposse/dynamic-subnets/aws"
20-
version = "2.3.0"
20+
version = "2.4.2"
2121
namespace = var.namespace
2222
stage = var.stage
2323
name = "example-subnets"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ resource "aws_security_group_rule" "additional" {
160160

161161
module "kms_key" {
162162
source = "cloudposse/kms-key/aws"
163-
version = "0.12.1"
163+
version = "0.12.2"
164164

165165
enabled = var.session_logging_enabled && var.session_logging_encryption_enabled && length(var.session_logging_kms_key_arn) == 0
166166
context = module.logs_label.context

0 commit comments

Comments
 (0)