Skip to content

Commit

Permalink
Feat: Updated the terraform code
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolnagpal committed Aug 28, 2023
1 parent 045b441 commit d54e8ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _example/vpc/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module "subnets" {
# AWS SFTP SECURITY GROUP
################################################################################

module "security_group-sftp" {
module "security_group_sftp" {
source = "clouddrove/security-group/aws"
version = "2.0.0"
name = "sftp-sg"
Expand Down Expand Up @@ -124,7 +124,7 @@ module "sftp" {
subnet_ids = module.subnets.private_subnet_id
vpc_id = module.vpc.vpc_id
restricted_home = true
vpc_security_group_ids = [module.security_group-sftp.security_group_ids]
vpc_security_group_ids = [module.security_group_sftp.security_group_id]
workflow_details = {
on_upload = {
execution_role = "arn:aws:iam::1234567890:role/test-sftp-transfer-role"
Expand Down

0 comments on commit d54e8ea

Please sign in to comment.