You must be logged in to view saved presets
Sets up an AWS App Mesh virtual gateway with HTTP protocol, access logging, and TLS configuration.
resource "aws_appmesh_virtual_gateway" "example" {
mesh_name = "example-service-mesh"
name = "example-virtual-gateway"
spec {
listener {
port_mapping {
port = 8080
protocol = "http"
}
tls {
mode = "STRICT"
}
}
}
}