sg
Security Group
NetworkingAWS
General
General information about the service.
Chat
Powered by AITalk to this service to learn more about it.
Suggested questions:
Naming
The conventions, rules, and restrictions for naming this service.
Naming Convention
sg-Length
1-255
Valid Characters
Letters, numbers, hyphens, underscores
Scope
vpc
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "aws_security_group" "main" {2 name = "sg-${var.environment}-web"3 description = "Web security group"4 vpc_id = aws_vpc.main.id5 ingress {6 from_port = 4437 to_port = 4438 protocol = "tcp"9 cidr_blocks = ["0.0.0.0/0"]10 }11}
Utilities
Utilities to support app deployment or configuration.