@@ -423,86 +423,86 @@ module "security_group" {
423423 source_security_group_id = null
424424 self = true
425425 },
426- length (var. vpc_security_group_allowed_cirds ) > 0 ? {
426+ length (var. vpc_security_group_allowed_cidrs ) > 0 ? {
427427 key = " auth"
428428 type = " ingress"
429429 from_port = 3025
430430 to_port = 3025
431431 protocol = " tcp"
432432 description = " allow auth traffic"
433- cidr_blocks = var.vpc_security_group_allowed_cirds
433+ cidr_blocks = var.vpc_security_group_allowed_cidrs
434434 ipv6_cidr_blocks = []
435435 source_security_group_id = null
436436 self = null
437437 } : null ,
438- length (var. vpc_security_group_allowed_cirds ) > 0 ? {
438+ length (var. vpc_security_group_allowed_cidrs ) > 0 ? {
439439 key = " node-ssh"
440440 type = " ingress"
441441 from_port = 3022
442442 to_port = 3022
443443 protocol = " tcp"
444444 description = " allow teleport node ssh"
445- cidr_blocks = var.vpc_security_group_allowed_cirds
445+ cidr_blocks = var.vpc_security_group_allowed_cidrs
446446 ipv6_cidr_blocks = []
447447 source_security_group_id = null
448448 self = null
449449 } : null ,
450- length (var. vpc_security_group_allowed_cirds ) > 0 ? {
450+ length (var. vpc_security_group_allowed_cidrs ) > 0 ? {
451451 key = " proxy-ssh"
452452 type = " ingress"
453453 from_port = 3023
454454 to_port = 3023
455455 protocol = " tcp"
456456 description = " allow teleport proxy ssh"
457- cidr_blocks = var.vpc_security_group_allowed_cirds
457+ cidr_blocks = var.vpc_security_group_allowed_cidrs
458458 ipv6_cidr_blocks = []
459459 source_security_group_id = null
460460 self = null
461461 } : null ,
462- length (var. vpc_security_group_allowed_cirds ) > 0 ? {
462+ length (var. vpc_security_group_allowed_cidrs ) > 0 ? {
463463 key = " proxy-reverse-ssh"
464464 type = " ingress"
465465 from_port = 3024
466466 to_port = 3024
467467 protocol = " tcp"
468468 description = " allow teleport proxy reverse-ssh"
469- cidr_blocks = var.vpc_security_group_allowed_cirds
469+ cidr_blocks = var.vpc_security_group_allowed_cidrs
470470 ipv6_cidr_blocks = []
471471 source_security_group_id = null
472472 self = null
473473 } : null ,
474- length (var. vpc_security_group_allowed_cirds ) > 0 ? {
474+ length (var. vpc_security_group_allowed_cidrs ) > 0 ? {
475475 key = " proxy-https"
476476 type = " ingress"
477477 from_port = 443
478478 to_port = 443
479479 protocol = " tcp"
480480 description = " allow teleport proxy https"
481- cidr_blocks = var.vpc_security_group_allowed_cirds
481+ cidr_blocks = var.vpc_security_group_allowed_cidrs
482482 ipv6_cidr_blocks = []
483483 source_security_group_id = null
484484 self = null
485485 } : null ,
486- length (var. vpc_security_group_allowed_cirds ) > 0 ? {
486+ length (var. vpc_security_group_allowed_cidrs ) > 0 ? {
487487 key = " proxy-web"
488488 type = " ingress"
489489 from_port = 3080
490490 to_port = 3080
491491 protocol = " tcp"
492492 description = " allow teleport proxy (alternative) https"
493- cidr_blocks = var.vpc_security_group_allowed_cirds
493+ cidr_blocks = var.vpc_security_group_allowed_cidrs
494494 ipv6_cidr_blocks = []
495495 source_security_group_id = null
496496 self = null
497497 } : null ,
498- length (var. vpc_security_group_allowed_cirds ) > 0 ? {
498+ length (var. vpc_security_group_allowed_cidrs ) > 0 ? {
499499 key = " proxy-mysql"
500500 type = " ingress"
501501 from_port = 3036
502502 to_port = 3036
503503 protocol = " tcp"
504504 description = " allow teleport proxy db connections"
505- cidr_blocks = var.vpc_security_group_allowed_cirds
505+ cidr_blocks = var.vpc_security_group_allowed_cidrs
506506 ipv6_cidr_blocks = []
507507 source_security_group_id = null
508508 self = null
0 commit comments