Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ provider "aws" {

module "vpc" {
source = "cloudposse/vpc/aws"
version = "2.1.0"
version = "2.3.0"

namespace = var.namespace
stage = var.stage
Expand All @@ -16,7 +16,7 @@ module "vpc" {

module "subnets" {
source = "cloudposse/dynamic-subnets/aws"
version = "2.3.0"
version = "2.4.2"
namespace = var.namespace
stage = var.stage

Expand Down
4 changes: 2 additions & 2 deletions examples/with-names/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ provider "aws" {
# Create VPC and subnets with specific names for demonstration
module "vpc" {
source = "cloudposse/vpc/aws"
version = "2.1.0"
version = "2.3.0"

namespace = var.namespace
stage = var.stage
Expand All @@ -17,7 +17,7 @@ module "vpc" {

module "subnets" {
source = "cloudposse/dynamic-subnets/aws"
version = "2.3.0"
version = "2.4.2"
namespace = var.namespace
stage = var.stage
name = "example-subnets"
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ resource "aws_security_group_rule" "additional" {

module "kms_key" {
source = "cloudposse/kms-key/aws"
version = "0.12.1"
version = "0.12.2"

enabled = var.session_logging_enabled && var.session_logging_encryption_enabled && length(var.session_logging_kms_key_arn) == 0
context = module.logs_label.context
Expand Down
Loading