Terraform AWS How use Security Group's port another that 22 for SSH – Amazon web services
I want using another SG's port for SSH, not 22, but i get error. For example: resource "aws_security_group" "ws_sg" { name = "WS SG" vpc_id = "${aws_vpc.ws_net.id}" tags = { "Name" = "WS SG" } } resource "aws_security_group_rule" "inbound_ssh" {…