We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee6eeb commit e81748bCopy full SHA for e81748b
examples/complete/main.tf
@@ -116,6 +116,18 @@ module "opensearch" {
116
}
117
118
119
+ # Security Group rule example
120
+ security_group_rules = {
121
+ ingress_443 = {
122
+ type = "ingress"
123
+ description = "HTTPS access from VPC"
124
+ from_port = 443
125
+ to_port = 443
126
+ ip_protocol = "tcp"
127
+ cidr_ipv4 = local.vpc_cidr
128
+ }
129
130
+
131
# Access policy
132
access_policy_statements = [
133
{
0 commit comments