Skip to content

Commit

Permalink
build(deps): bump clouddrove/kms/aws from 1.3.0 to 1.3.1 in /_example (
Browse files Browse the repository at this point in the history
…#13)

* build(deps): bump clouddrove/kms/aws from 1.3.0 to 1.3.1 in /_example

Bumps [clouddrove/kms/aws](https://github.com/clouddrove/terraform-aws-kms) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/clouddrove/terraform-aws-kms/releases)
- [Changelog](https://github.com/clouddrove/terraform-aws-kms/blob/master/CHANGELOG.md)
- [Commits](clouddrove/terraform-aws-kms@1.3.0...1.3.1)

---
updated-dependencies:
- dependency-name: clouddrove/kms/aws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* feat: Testing main.tf

* feat: Removed unexpected argument

* feat: Removed unexpected argument

* feat: Testing main.tf

* feat: Resolved formating issue

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ashutosh Mahajan <78293616+AshutoshAM2002@users.noreply.github.com>
Co-authored-by: Ashutosh Mahajan <ashutoshmahajan2002@gmail.com>
  • Loading branch information
3 people committed Sep 25, 2023
1 parent 98320a4 commit cd7de50
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions _example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,16 @@ module "ssh" {
environment = "test"
label_order = ["name", "environment"]

vpc_id = module.vpc.vpc_id
allowed_ip = [module.vpc.vpc_cidr_block, "0.0.0.0/0"]
allowed_ports = [22]
vpc_id = module.vpc.vpc_id

new_sg_ingress_rules_with_cidr_blocks = [{
rule_count = 1
from_port = 22
protocol = "tcp"
to_port = 22
cidr_blocks = [module.vpc.vpc_cidr_block, "0.0.0.0/0"]
description = "Allow ssh traffic."
}]
}


Expand All @@ -61,12 +68,12 @@ module "efs" {
availability_zones = ["eu-west-1a", "eu-west-1b"]
vpc_id = module.vpc.vpc_id
subnets = module.subnets.public_subnet_id
security_groups = [module.ssh.security_group_ids]
security_groups = [module.ssh.security_group_id]
}

module "kms_key" {
source = "clouddrove/kms/aws"
version = "1.3.0"
version = "1.3.1"

name = "kms"
environment = "test"
Expand Down Expand Up @@ -115,4 +122,4 @@ module "backup" {
backup_resources = [module.efs.arn]
kms_key_arn = module.kms_key.key_arn

}
}

0 comments on commit cd7de50

Please sign in to comment.