Difference between revisions of "Terraform resource: aws db security group"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_security_group | https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_security_group | ||
+ | |||
+ | Official example: | ||
+ | resource "aws_db_security_group" "default" { | ||
+ | name = "rds_sg" | ||
+ | |||
+ | ingress { | ||
+ | cidr = "10.0.0.0/24" | ||
+ | } | ||
+ | } | ||
Latest revision as of 21:07, 1 June 2022
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_security_group
Official example:
resource "aws_db_security_group" "default" { name = "rds_sg" ingress { cidr = "10.0.0.0/24" } }
See also[edit]
- Terraform AWS resources: IAM, Net, EC2, ECS, ECR, S3, Route53, ACM, CloudWatch, CloudFront SES, RDS, DLM
Advertising: