We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to add the stateless attribute to an ingress_security_rules as commented out below
resource "baremetal_core_security_list" "WebSubnet" { compartment_id = "${var.compartment_ocid}" display_name = "Public" vcn_id = "${baremetal_core_virtual_network.CompleteVCN.id}" egress_security_rules = [{ destination = "0.0.0.0/0" protocol = "6" stateless = "true" }] ingress_security_rules = [{ tcp_options { "max" = 80 "min" = 80 } protocol = "6" source = "0.0.0.0/0" }, { protocol = "6" source = "${var.VPC-CIDR}" # stateless = "true" }] }
The text was updated successfully, but these errors were encountered:
Add support for stateless on ingress security rules. Closes oracle#49
5c8c45a
Merge pull request #59 from MustWin/master
d5ed903
Closes #50, closes #44, closes #49, closes #34, closes #12
Successfully merging a pull request may close this issue.
Not able to add the stateless attribute to an ingress_security_rules as commented out below
resource "baremetal_core_security_list" "WebSubnet" {
compartment_id = "${var.compartment_ocid}"
display_name = "Public"
vcn_id = "${baremetal_core_virtual_network.CompleteVCN.id}"
egress_security_rules = [{
destination = "0.0.0.0/0"
protocol = "6"
stateless = "true"
}]
ingress_security_rules = [{
tcp_options {
"max" = 80
"min" = 80
}
protocol = "6"
source = "0.0.0.0/0"
},
{
protocol = "6"
source = "${var.VPC-CIDR}"
# stateless = "true"
}]
}
The text was updated successfully, but these errors were encountered: