Difference between revisions of "Terraform resource: aws security group"
Jump to navigation
Jump to search
Line 39: | Line 39: | ||
* <code>[[security_groups]], [[network_configuration]]</code>: <code>[[aws_ecs_service]]</code> | * <code>[[security_groups]], [[network_configuration]]</code>: <code>[[aws_ecs_service]]</code> | ||
* <code>[[vpc_security_group_ids]]</code>: <code>[[aws_instance]], [[aws_db_instance]]</code> | * <code>[[vpc_security_group_ids]]</code>: <code>[[aws_instance]], [[aws_db_instance]]</code> | ||
− | + | * <code>[[aws_network_interface_sg_attachment]]</code> | |
+ | * <code>[[aws_instance]]</code> | ||
== See also == | == See also == |
Revision as of 08:59, 13 March 2023
Contents
Examples
resource "aws_security_group" "allow_tls" { name = "allow_tls" description = "Allow TLS inbound traffic" vpc_id = aws_vpc.main.id ingress { description = "TLS from VPC" from_port = 443 to_port = 443 protocol = "tcp" cidr_blocks = [aws_vpc.main.cidr_block] ipv6_cidr_blocks = [aws_vpc.main.ipv6_cidr_block] } egress { from_port = 0 to_port = 0 protocol = "-1" cidr_blocks = ["0.0.0.0/0"] ipv6_cidr_blocks = ["::/0"] } tags = { Name = "allow_tls" } }
Arguments
prefix_list_ids
(optional)
Related terms
- Terraform resource:
aws_security_group_rule
- Security group
vpc_id
security_groups, network_configuration
:aws_ecs_service
vpc_security_group_ids
:aws_instance, aws_db_instance
aws_network_interface_sg_attachment
aws_instance
See also
Advertising: