oci.ServiceMesh.IngressGateway
Explore with Pulumi AI
This resource provides the Ingress Gateway resource in Oracle Cloud Infrastructure Service Mesh service.
Creates a new IngressGateway.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testIngressGateway = new oci.servicemesh.IngressGateway("test_ingress_gateway", {
compartmentId: compartmentId,
hosts: [{
listeners: [{
port: ingressGatewayHostsListenersPort,
protocol: ingressGatewayHostsListenersProtocol,
tls: {
mode: ingressGatewayHostsListenersTlsMode,
clientValidation: {
subjectAlternateNames: ingressGatewayHostsListenersTlsClientValidationSubjectAlternateNames,
trustedCaBundle: {
type: ingressGatewayHostsListenersTlsClientValidationTrustedCaBundleType,
caBundleId: testCaBundle.id,
secretName: testSecret.name,
},
},
serverCertificate: {
type: ingressGatewayHostsListenersTlsServerCertificateType,
certificateId: testCertificate.id,
secretName: testSecret.name,
},
},
}],
name: ingressGatewayHostsName,
hostnames: ingressGatewayHostsHostnames,
}],
meshId: testMesh.id,
name: ingressGatewayName,
accessLogging: {
isEnabled: ingressGatewayAccessLoggingIsEnabled,
},
definedTags: {
"foo-namespace.bar-key": "value",
},
description: ingressGatewayDescription,
freeformTags: {
"bar-key": "value",
},
mtls: {
maximumValidity: ingressGatewayMtlsMaximumValidity,
},
});
import pulumi
import pulumi_oci as oci
test_ingress_gateway = oci.service_mesh.IngressGateway("test_ingress_gateway",
compartment_id=compartment_id,
hosts=[oci.service_mesh.IngressGatewayHostArgs(
listeners=[oci.service_mesh.IngressGatewayHostListenerArgs(
port=ingress_gateway_hosts_listeners_port,
protocol=ingress_gateway_hosts_listeners_protocol,
tls=oci.service_mesh.IngressGatewayHostListenerTlsArgs(
mode=ingress_gateway_hosts_listeners_tls_mode,
client_validation=oci.service_mesh.IngressGatewayHostListenerTlsClientValidationArgs(
subject_alternate_names=ingress_gateway_hosts_listeners_tls_client_validation_subject_alternate_names,
trusted_ca_bundle=oci.service_mesh.IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs(
type=ingress_gateway_hosts_listeners_tls_client_validation_trusted_ca_bundle_type,
ca_bundle_id=test_ca_bundle["id"],
secret_name=test_secret["name"],
),
),
server_certificate=oci.service_mesh.IngressGatewayHostListenerTlsServerCertificateArgs(
type=ingress_gateway_hosts_listeners_tls_server_certificate_type,
certificate_id=test_certificate["id"],
secret_name=test_secret["name"],
),
),
)],
name=ingress_gateway_hosts_name,
hostnames=ingress_gateway_hosts_hostnames,
)],
mesh_id=test_mesh["id"],
name=ingress_gateway_name,
access_logging=oci.service_mesh.IngressGatewayAccessLoggingArgs(
is_enabled=ingress_gateway_access_logging_is_enabled,
),
defined_tags={
"foo-namespace.bar-key": "value",
},
description=ingress_gateway_description,
freeform_tags={
"bar-key": "value",
},
mtls=oci.service_mesh.IngressGatewayMtlsArgs(
maximum_validity=ingress_gateway_mtls_maximum_validity,
))
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/ServiceMesh"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ServiceMesh.NewIngressGateway(ctx, "test_ingress_gateway", &ServiceMesh.IngressGatewayArgs{
CompartmentId: pulumi.Any(compartmentId),
Hosts: servicemesh.IngressGatewayHostArray{
&servicemesh.IngressGatewayHostArgs{
Listeners: servicemesh.IngressGatewayHostListenerArray{
&servicemesh.IngressGatewayHostListenerArgs{
Port: pulumi.Any(ingressGatewayHostsListenersPort),
Protocol: pulumi.Any(ingressGatewayHostsListenersProtocol),
Tls: &servicemesh.IngressGatewayHostListenerTlsArgs{
Mode: pulumi.Any(ingressGatewayHostsListenersTlsMode),
ClientValidation: &servicemesh.IngressGatewayHostListenerTlsClientValidationArgs{
SubjectAlternateNames: pulumi.Any(ingressGatewayHostsListenersTlsClientValidationSubjectAlternateNames),
TrustedCaBundle: &servicemesh.IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs{
Type: pulumi.Any(ingressGatewayHostsListenersTlsClientValidationTrustedCaBundleType),
CaBundleId: pulumi.Any(testCaBundle.Id),
SecretName: pulumi.Any(testSecret.Name),
},
},
ServerCertificate: &servicemesh.IngressGatewayHostListenerTlsServerCertificateArgs{
Type: pulumi.Any(ingressGatewayHostsListenersTlsServerCertificateType),
CertificateId: pulumi.Any(testCertificate.Id),
SecretName: pulumi.Any(testSecret.Name),
},
},
},
},
Name: pulumi.Any(ingressGatewayHostsName),
Hostnames: pulumi.Any(ingressGatewayHostsHostnames),
},
},
MeshId: pulumi.Any(testMesh.Id),
Name: pulumi.Any(ingressGatewayName),
AccessLogging: &servicemesh.IngressGatewayAccessLoggingArgs{
IsEnabled: pulumi.Any(ingressGatewayAccessLoggingIsEnabled),
},
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(ingressGatewayDescription),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
Mtls: &servicemesh.IngressGatewayMtlsArgs{
MaximumValidity: pulumi.Any(ingressGatewayMtlsMaximumValidity),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testIngressGateway = new Oci.ServiceMesh.IngressGateway("test_ingress_gateway", new()
{
CompartmentId = compartmentId,
Hosts = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayHostArgs
{
Listeners = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerArgs
{
Port = ingressGatewayHostsListenersPort,
Protocol = ingressGatewayHostsListenersProtocol,
Tls = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsArgs
{
Mode = ingressGatewayHostsListenersTlsMode,
ClientValidation = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsClientValidationArgs
{
SubjectAlternateNames = ingressGatewayHostsListenersTlsClientValidationSubjectAlternateNames,
TrustedCaBundle = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs
{
Type = ingressGatewayHostsListenersTlsClientValidationTrustedCaBundleType,
CaBundleId = testCaBundle.Id,
SecretName = testSecret.Name,
},
},
ServerCertificate = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsServerCertificateArgs
{
Type = ingressGatewayHostsListenersTlsServerCertificateType,
CertificateId = testCertificate.Id,
SecretName = testSecret.Name,
},
},
},
},
Name = ingressGatewayHostsName,
Hostnames = ingressGatewayHostsHostnames,
},
},
MeshId = testMesh.Id,
Name = ingressGatewayName,
AccessLogging = new Oci.ServiceMesh.Inputs.IngressGatewayAccessLoggingArgs
{
IsEnabled = ingressGatewayAccessLoggingIsEnabled,
},
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = ingressGatewayDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
Mtls = new Oci.ServiceMesh.Inputs.IngressGatewayMtlsArgs
{
MaximumValidity = ingressGatewayMtlsMaximumValidity,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ServiceMesh.IngressGateway;
import com.pulumi.oci.ServiceMesh.IngressGatewayArgs;
import com.pulumi.oci.ServiceMesh.inputs.IngressGatewayHostArgs;
import com.pulumi.oci.ServiceMesh.inputs.IngressGatewayAccessLoggingArgs;
import com.pulumi.oci.ServiceMesh.inputs.IngressGatewayMtlsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testIngressGateway = new IngressGateway("testIngressGateway", IngressGatewayArgs.builder()
.compartmentId(compartmentId)
.hosts(IngressGatewayHostArgs.builder()
.listeners(IngressGatewayHostListenerArgs.builder()
.port(ingressGatewayHostsListenersPort)
.protocol(ingressGatewayHostsListenersProtocol)
.tls(IngressGatewayHostListenerTlsArgs.builder()
.mode(ingressGatewayHostsListenersTlsMode)
.clientValidation(IngressGatewayHostListenerTlsClientValidationArgs.builder()
.subjectAlternateNames(ingressGatewayHostsListenersTlsClientValidationSubjectAlternateNames)
.trustedCaBundle(IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs.builder()
.type(ingressGatewayHostsListenersTlsClientValidationTrustedCaBundleType)
.caBundleId(testCaBundle.id())
.secretName(testSecret.name())
.build())
.build())
.serverCertificate(IngressGatewayHostListenerTlsServerCertificateArgs.builder()
.type(ingressGatewayHostsListenersTlsServerCertificateType)
.certificateId(testCertificate.id())
.secretName(testSecret.name())
.build())
.build())
.build())
.name(ingressGatewayHostsName)
.hostnames(ingressGatewayHostsHostnames)
.build())
.meshId(testMesh.id())
.name(ingressGatewayName)
.accessLogging(IngressGatewayAccessLoggingArgs.builder()
.isEnabled(ingressGatewayAccessLoggingIsEnabled)
.build())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(ingressGatewayDescription)
.freeformTags(Map.of("bar-key", "value"))
.mtls(IngressGatewayMtlsArgs.builder()
.maximumValidity(ingressGatewayMtlsMaximumValidity)
.build())
.build());
}
}
resources:
testIngressGateway:
type: oci:ServiceMesh:IngressGateway
name: test_ingress_gateway
properties:
compartmentId: ${compartmentId}
hosts:
- listeners:
- port: ${ingressGatewayHostsListenersPort}
protocol: ${ingressGatewayHostsListenersProtocol}
tls:
mode: ${ingressGatewayHostsListenersTlsMode}
clientValidation:
subjectAlternateNames: ${ingressGatewayHostsListenersTlsClientValidationSubjectAlternateNames}
trustedCaBundle:
type: ${ingressGatewayHostsListenersTlsClientValidationTrustedCaBundleType}
caBundleId: ${testCaBundle.id}
secretName: ${testSecret.name}
serverCertificate:
type: ${ingressGatewayHostsListenersTlsServerCertificateType}
certificateId: ${testCertificate.id}
secretName: ${testSecret.name}
name: ${ingressGatewayHostsName}
hostnames: ${ingressGatewayHostsHostnames}
meshId: ${testMesh.id}
name: ${ingressGatewayName}
accessLogging:
isEnabled: ${ingressGatewayAccessLoggingIsEnabled}
definedTags:
foo-namespace.bar-key: value
description: ${ingressGatewayDescription}
freeformTags:
bar-key: value
mtls:
maximumValidity: ${ingressGatewayMtlsMaximumValidity}
Create IngressGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IngressGateway(name: string, args: IngressGatewayArgs, opts?: CustomResourceOptions);
@overload
def IngressGateway(resource_name: str,
args: IngressGatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IngressGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
hosts: Optional[Sequence[_servicemesh.IngressGatewayHostArgs]] = None,
mesh_id: Optional[str] = None,
access_logging: Optional[_servicemesh.IngressGatewayAccessLoggingArgs] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
mtls: Optional[_servicemesh.IngressGatewayMtlsArgs] = None,
name: Optional[str] = None)
func NewIngressGateway(ctx *Context, name string, args IngressGatewayArgs, opts ...ResourceOption) (*IngressGateway, error)
public IngressGateway(string name, IngressGatewayArgs args, CustomResourceOptions? opts = null)
public IngressGateway(String name, IngressGatewayArgs args)
public IngressGateway(String name, IngressGatewayArgs args, CustomResourceOptions options)
type: oci:ServiceMesh:IngressGateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IngressGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IngressGatewayArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IngressGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IngressGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IngressGatewayArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ingressGatewayResource = new Oci.ServiceMesh.IngressGateway("ingressGatewayResource", new()
{
CompartmentId = "string",
Hosts = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayHostArgs
{
Listeners = new[]
{
new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerArgs
{
Port = 0,
Protocol = "string",
Tls = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsArgs
{
Mode = "string",
ClientValidation = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsClientValidationArgs
{
SubjectAlternateNames = new[]
{
"string",
},
TrustedCaBundle = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs
{
Type = "string",
CaBundleId = "string",
SecretName = "string",
},
},
ServerCertificate = new Oci.ServiceMesh.Inputs.IngressGatewayHostListenerTlsServerCertificateArgs
{
Type = "string",
CertificateId = "string",
SecretName = "string",
},
},
},
},
Name = "string",
Hostnames = new[]
{
"string",
},
},
},
MeshId = "string",
AccessLogging = new Oci.ServiceMesh.Inputs.IngressGatewayAccessLoggingArgs
{
IsEnabled = false,
},
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
FreeformTags =
{
{ "string", "any" },
},
Mtls = new Oci.ServiceMesh.Inputs.IngressGatewayMtlsArgs
{
CertificateId = "string",
MaximumValidity = 0,
},
Name = "string",
});
example, err := ServiceMesh.NewIngressGateway(ctx, "ingressGatewayResource", &ServiceMesh.IngressGatewayArgs{
CompartmentId: pulumi.String("string"),
Hosts: servicemesh.IngressGatewayHostArray{
&servicemesh.IngressGatewayHostArgs{
Listeners: servicemesh.IngressGatewayHostListenerArray{
&servicemesh.IngressGatewayHostListenerArgs{
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
Tls: &servicemesh.IngressGatewayHostListenerTlsArgs{
Mode: pulumi.String("string"),
ClientValidation: &servicemesh.IngressGatewayHostListenerTlsClientValidationArgs{
SubjectAlternateNames: pulumi.StringArray{
pulumi.String("string"),
},
TrustedCaBundle: &servicemesh.IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs{
Type: pulumi.String("string"),
CaBundleId: pulumi.String("string"),
SecretName: pulumi.String("string"),
},
},
ServerCertificate: &servicemesh.IngressGatewayHostListenerTlsServerCertificateArgs{
Type: pulumi.String("string"),
CertificateId: pulumi.String("string"),
SecretName: pulumi.String("string"),
},
},
},
},
Name: pulumi.String("string"),
Hostnames: pulumi.StringArray{
pulumi.String("string"),
},
},
},
MeshId: pulumi.String("string"),
AccessLogging: &servicemesh.IngressGatewayAccessLoggingArgs{
IsEnabled: pulumi.Bool(false),
},
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Mtls: &servicemesh.IngressGatewayMtlsArgs{
CertificateId: pulumi.String("string"),
MaximumValidity: pulumi.Int(0),
},
Name: pulumi.String("string"),
})
var ingressGatewayResource = new IngressGateway("ingressGatewayResource", IngressGatewayArgs.builder()
.compartmentId("string")
.hosts(IngressGatewayHostArgs.builder()
.listeners(IngressGatewayHostListenerArgs.builder()
.port(0)
.protocol("string")
.tls(IngressGatewayHostListenerTlsArgs.builder()
.mode("string")
.clientValidation(IngressGatewayHostListenerTlsClientValidationArgs.builder()
.subjectAlternateNames("string")
.trustedCaBundle(IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs.builder()
.type("string")
.caBundleId("string")
.secretName("string")
.build())
.build())
.serverCertificate(IngressGatewayHostListenerTlsServerCertificateArgs.builder()
.type("string")
.certificateId("string")
.secretName("string")
.build())
.build())
.build())
.name("string")
.hostnames("string")
.build())
.meshId("string")
.accessLogging(IngressGatewayAccessLoggingArgs.builder()
.isEnabled(false)
.build())
.definedTags(Map.of("string", "any"))
.description("string")
.freeformTags(Map.of("string", "any"))
.mtls(IngressGatewayMtlsArgs.builder()
.certificateId("string")
.maximumValidity(0)
.build())
.name("string")
.build());
ingress_gateway_resource = oci.service_mesh.IngressGateway("ingressGatewayResource",
compartment_id="string",
hosts=[oci.service_mesh.IngressGatewayHostArgs(
listeners=[oci.service_mesh.IngressGatewayHostListenerArgs(
port=0,
protocol="string",
tls=oci.service_mesh.IngressGatewayHostListenerTlsArgs(
mode="string",
client_validation=oci.service_mesh.IngressGatewayHostListenerTlsClientValidationArgs(
subject_alternate_names=["string"],
trusted_ca_bundle=oci.service_mesh.IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs(
type="string",
ca_bundle_id="string",
secret_name="string",
),
),
server_certificate=oci.service_mesh.IngressGatewayHostListenerTlsServerCertificateArgs(
type="string",
certificate_id="string",
secret_name="string",
),
),
)],
name="string",
hostnames=["string"],
)],
mesh_id="string",
access_logging=oci.service_mesh.IngressGatewayAccessLoggingArgs(
is_enabled=False,
),
defined_tags={
"string": "any",
},
description="string",
freeform_tags={
"string": "any",
},
mtls=oci.service_mesh.IngressGatewayMtlsArgs(
certificate_id="string",
maximum_validity=0,
),
name="string")
const ingressGatewayResource = new oci.servicemesh.IngressGateway("ingressGatewayResource", {
compartmentId: "string",
hosts: [{
listeners: [{
port: 0,
protocol: "string",
tls: {
mode: "string",
clientValidation: {
subjectAlternateNames: ["string"],
trustedCaBundle: {
type: "string",
caBundleId: "string",
secretName: "string",
},
},
serverCertificate: {
type: "string",
certificateId: "string",
secretName: "string",
},
},
}],
name: "string",
hostnames: ["string"],
}],
meshId: "string",
accessLogging: {
isEnabled: false,
},
definedTags: {
string: "any",
},
description: "string",
freeformTags: {
string: "any",
},
mtls: {
certificateId: "string",
maximumValidity: 0,
},
name: "string",
});
type: oci:ServiceMesh:IngressGateway
properties:
accessLogging:
isEnabled: false
compartmentId: string
definedTags:
string: any
description: string
freeformTags:
string: any
hosts:
- hostnames:
- string
listeners:
- port: 0
protocol: string
tls:
clientValidation:
subjectAlternateNames:
- string
trustedCaBundle:
caBundleId: string
secretName: string
type: string
mode: string
serverCertificate:
certificateId: string
secretName: string
type: string
name: string
meshId: string
mtls:
certificateId: string
maximumValidity: 0
name: string
IngressGateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The IngressGateway resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Hosts
List<Ingress
Gateway Host> - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- Mesh
Id string - The OCID of the service mesh in which this ingress gateway is created.
- Access
Logging IngressGateway Access Logging - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Mtls
Ingress
Gateway Mtls - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- Name string
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Hosts
[]Ingress
Gateway Host Args - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- Mesh
Id string - The OCID of the service mesh in which this ingress gateway is created.
- Access
Logging IngressGateway Access Logging Args - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Mtls
Ingress
Gateway Mtls Args - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- Name string
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - (Updatable) The OCID of the compartment.
- hosts
List<Ingress
Gateway Host> - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- mesh
Id String - The OCID of the service mesh in which this ingress gateway is created.
- access
Logging IngressGateway Access Logging - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- mtls
Ingress
Gateway Mtls - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name String
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id string - (Updatable) The OCID of the compartment.
- hosts
Ingress
Gateway Host[] - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- mesh
Id string - The OCID of the service mesh in which this ingress gateway is created.
- access
Logging IngressGateway Access Logging - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- mtls
Ingress
Gateway Mtls - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name string
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str - (Updatable) The OCID of the compartment.
- hosts
Sequence[servicemesh.
Ingress Gateway Host Args] - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- mesh_
id str - The OCID of the service mesh in which this ingress gateway is created.
- access_
logging servicemesh.Ingress Gateway Access Logging Args - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- mtls
servicemesh.
Ingress Gateway Mtls Args - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name str
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - (Updatable) The OCID of the compartment.
- hosts List<Property Map>
- (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- mesh
Id String - The OCID of the service mesh in which this ingress gateway is created.
- access
Logging Property Map - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- mtls Property Map
- (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name String
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the IngressGateway resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- State string
- The current state of the Resource.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- State string
- The current state of the Resource.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state String
- The current state of the Resource.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state string
- The current state of the Resource.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state str
- The current state of the Resource.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time when this resource was created in an RFC3339 formatted datetime string.
- time_
updated str - The time when this resource was updated in an RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- state String
- The current state of the Resource.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
Look up Existing IngressGateway Resource
Get an existing IngressGateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IngressGatewayState, opts?: CustomResourceOptions): IngressGateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_logging: Optional[_servicemesh.IngressGatewayAccessLoggingArgs] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
hosts: Optional[Sequence[_servicemesh.IngressGatewayHostArgs]] = None,
lifecycle_details: Optional[str] = None,
mesh_id: Optional[str] = None,
mtls: Optional[_servicemesh.IngressGatewayMtlsArgs] = None,
name: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> IngressGateway
func GetIngressGateway(ctx *Context, name string, id IDInput, state *IngressGatewayState, opts ...ResourceOption) (*IngressGateway, error)
public static IngressGateway Get(string name, Input<string> id, IngressGatewayState? state, CustomResourceOptions? opts = null)
public static IngressGateway get(String name, Output<String> id, IngressGatewayState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Logging IngressGateway Access Logging - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Hosts
List<Ingress
Gateway Host> - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- Mesh
Id string - The OCID of the service mesh in which this ingress gateway is created.
- Mtls
Ingress
Gateway Mtls - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- Name string
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current state of the Resource.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- Access
Logging IngressGateway Access Logging Args - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Hosts
[]Ingress
Gateway Host Args - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- Mesh
Id string - The OCID of the service mesh in which this ingress gateway is created.
- Mtls
Ingress
Gateway Mtls Args - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- Name string
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current state of the Resource.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- Time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- access
Logging IngressGateway Access Logging - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- compartment
Id String - (Updatable) The OCID of the compartment.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- hosts
List<Ingress
Gateway Host> - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- mesh
Id String - The OCID of the service mesh in which this ingress gateway is created.
- mtls
Ingress
Gateway Mtls - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name String
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current state of the Resource.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
- access
Logging IngressGateway Access Logging - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- compartment
Id string - (Updatable) The OCID of the compartment.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- hosts
Ingress
Gateway Host[] - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- mesh
Id string - The OCID of the service mesh in which this ingress gateway is created.
- mtls
Ingress
Gateway Mtls - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name string
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state string
- The current state of the Resource.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated string - The time when this resource was updated in an RFC3339 formatted datetime string.
- access_
logging servicemesh.Ingress Gateway Access Logging Args - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- compartment_
id str - (Updatable) The OCID of the compartment.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- hosts
Sequence[servicemesh.
Ingress Gateway Host Args] - (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- mesh_
id str - The OCID of the service mesh in which this ingress gateway is created.
- mtls
servicemesh.
Ingress Gateway Mtls Args - (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name str
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state str
- The current state of the Resource.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time when this resource was created in an RFC3339 formatted datetime string.
- time_
updated str - The time when this resource was updated in an RFC3339 formatted datetime string.
- access
Logging Property Map - (Updatable) This configuration determines if logging is enabled and where the logs will be output.
- compartment
Id String - (Updatable) The OCID of the compartment.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Description of the resource. It can be changed after creation. Avoid entering confidential information. Example:
This is my new resource
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- hosts List<Property Map>
- (Updatable) An array of hostnames and their listener configuration that this gateway will bind to.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
- mesh
Id String - The OCID of the service mesh in which this ingress gateway is created.
- mtls Property Map
- (Updatable) Mutual TLS settings used when sending requests to virtual services within the mesh.
- name String
A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example:
My unique resource name
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current state of the Resource.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time when this resource was created in an RFC3339 formatted datetime string.
- time
Updated String - The time when this resource was updated in an RFC3339 formatted datetime string.
Supporting Types
IngressGatewayAccessLogging, IngressGatewayAccessLoggingArgs
- Is
Enabled bool - (Updatable) Determines if the logging configuration is enabled.
- Is
Enabled bool - (Updatable) Determines if the logging configuration is enabled.
- is
Enabled Boolean - (Updatable) Determines if the logging configuration is enabled.
- is
Enabled boolean - (Updatable) Determines if the logging configuration is enabled.
- is_
enabled bool - (Updatable) Determines if the logging configuration is enabled.
- is
Enabled Boolean - (Updatable) Determines if the logging configuration is enabled.
IngressGatewayHost, IngressGatewayHostArgs
- Listeners
List<Ingress
Gateway Host Listener> - (Updatable) The listeners for the ingress gateway.
- Name string
- (Updatable) A user-friendly name for the host. The name must be unique within the same ingress gateway. This name can be used in the ingress gateway route table resource to attach a route to this host. Example:
MyExampleHost
- Hostnames List<string>
- (Updatable) Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
- Listeners
[]Ingress
Gateway Host Listener - (Updatable) The listeners for the ingress gateway.
- Name string
- (Updatable) A user-friendly name for the host. The name must be unique within the same ingress gateway. This name can be used in the ingress gateway route table resource to attach a route to this host. Example:
MyExampleHost
- Hostnames []string
- (Updatable) Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
- listeners
List<Ingress
Gateway Host Listener> - (Updatable) The listeners for the ingress gateway.
- name String
- (Updatable) A user-friendly name for the host. The name must be unique within the same ingress gateway. This name can be used in the ingress gateway route table resource to attach a route to this host. Example:
MyExampleHost
- hostnames List<String>
- (Updatable) Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
- listeners
Ingress
Gateway Host Listener[] - (Updatable) The listeners for the ingress gateway.
- name string
- (Updatable) A user-friendly name for the host. The name must be unique within the same ingress gateway. This name can be used in the ingress gateway route table resource to attach a route to this host. Example:
MyExampleHost
- hostnames string[]
- (Updatable) Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
- listeners
Sequence[servicemesh.
Ingress Gateway Host Listener] - (Updatable) The listeners for the ingress gateway.
- name str
- (Updatable) A user-friendly name for the host. The name must be unique within the same ingress gateway. This name can be used in the ingress gateway route table resource to attach a route to this host. Example:
MyExampleHost
- hostnames Sequence[str]
- (Updatable) Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
- listeners List<Property Map>
- (Updatable) The listeners for the ingress gateway.
- name String
- (Updatable) A user-friendly name for the host. The name must be unique within the same ingress gateway. This name can be used in the ingress gateway route table resource to attach a route to this host. Example:
MyExampleHost
- hostnames List<String>
- (Updatable) Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
IngressGatewayHostListener, IngressGatewayHostListenerArgs
- Port int
- (Updatable) Port on which ingress gateway is listening.
- Protocol string
- (Updatable) Type of protocol used.
- Tls
Ingress
Gateway Host Listener Tls - (Updatable) TLS enforcement config for the ingress listener.
- Port int
- (Updatable) Port on which ingress gateway is listening.
- Protocol string
- (Updatable) Type of protocol used.
- Tls
Ingress
Gateway Host Listener Tls - (Updatable) TLS enforcement config for the ingress listener.
- port Integer
- (Updatable) Port on which ingress gateway is listening.
- protocol String
- (Updatable) Type of protocol used.
- tls
Ingress
Gateway Host Listener Tls - (Updatable) TLS enforcement config for the ingress listener.
- port number
- (Updatable) Port on which ingress gateway is listening.
- protocol string
- (Updatable) Type of protocol used.
- tls
Ingress
Gateway Host Listener Tls - (Updatable) TLS enforcement config for the ingress listener.
- port int
- (Updatable) Port on which ingress gateway is listening.
- protocol str
- (Updatable) Type of protocol used.
- tls
servicemesh.
Ingress Gateway Host Listener Tls - (Updatable) TLS enforcement config for the ingress listener.
- port Number
- (Updatable) Port on which ingress gateway is listening.
- protocol String
- (Updatable) Type of protocol used.
- tls Property Map
- (Updatable) TLS enforcement config for the ingress listener.
IngressGatewayHostListenerTls, IngressGatewayHostListenerTlsArgs
- Mode string
- (Updatable) DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
- Client
Validation IngressGateway Host Listener Tls Client Validation - (Updatable) Resource representing the TLS configuration used for validating client certificates.
- Server
Certificate IngressGateway Host Listener Tls Server Certificate - (Updatable) Resource representing the location of the TLS certificate.
- Mode string
- (Updatable) DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
- Client
Validation IngressGateway Host Listener Tls Client Validation - (Updatable) Resource representing the TLS configuration used for validating client certificates.
- Server
Certificate IngressGateway Host Listener Tls Server Certificate - (Updatable) Resource representing the location of the TLS certificate.
- mode String
- (Updatable) DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
- client
Validation IngressGateway Host Listener Tls Client Validation - (Updatable) Resource representing the TLS configuration used for validating client certificates.
- server
Certificate IngressGateway Host Listener Tls Server Certificate - (Updatable) Resource representing the location of the TLS certificate.
- mode string
- (Updatable) DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
- client
Validation IngressGateway Host Listener Tls Client Validation - (Updatable) Resource representing the TLS configuration used for validating client certificates.
- server
Certificate IngressGateway Host Listener Tls Server Certificate - (Updatable) Resource representing the location of the TLS certificate.
- mode str
- (Updatable) DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
- client_
validation servicemesh.Ingress Gateway Host Listener Tls Client Validation - (Updatable) Resource representing the TLS configuration used for validating client certificates.
- server_
certificate servicemesh.Ingress Gateway Host Listener Tls Server Certificate - (Updatable) Resource representing the location of the TLS certificate.
- mode String
- (Updatable) DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
- client
Validation Property Map - (Updatable) Resource representing the TLS configuration used for validating client certificates.
- server
Certificate Property Map - (Updatable) Resource representing the location of the TLS certificate.
IngressGatewayHostListenerTlsClientValidation, IngressGatewayHostListenerTlsClientValidationArgs
- Subject
Alternate List<string>Names - (Updatable) A list of alternate names to verify the subject identity in the certificate presented by the client.
- Trusted
Ca IngressBundle Gateway Host Listener Tls Client Validation Trusted Ca Bundle - (Updatable) Resource representing the CA bundle.
- Subject
Alternate []stringNames - (Updatable) A list of alternate names to verify the subject identity in the certificate presented by the client.
- Trusted
Ca IngressBundle Gateway Host Listener Tls Client Validation Trusted Ca Bundle - (Updatable) Resource representing the CA bundle.
- subject
Alternate List<String>Names - (Updatable) A list of alternate names to verify the subject identity in the certificate presented by the client.
- trusted
Ca IngressBundle Gateway Host Listener Tls Client Validation Trusted Ca Bundle - (Updatable) Resource representing the CA bundle.
- subject
Alternate string[]Names - (Updatable) A list of alternate names to verify the subject identity in the certificate presented by the client.
- trusted
Ca IngressBundle Gateway Host Listener Tls Client Validation Trusted Ca Bundle - (Updatable) Resource representing the CA bundle.
- subject_
alternate_ Sequence[str]names - (Updatable) A list of alternate names to verify the subject identity in the certificate presented by the client.
- trusted_
ca_ servicemesh.bundle Ingress Gateway Host Listener Tls Client Validation Trusted Ca Bundle - (Updatable) Resource representing the CA bundle.
- subject
Alternate List<String>Names - (Updatable) A list of alternate names to verify the subject identity in the certificate presented by the client.
- trusted
Ca Property MapBundle - (Updatable) Resource representing the CA bundle.
IngressGatewayHostListenerTlsClientValidationTrustedCaBundle, IngressGatewayHostListenerTlsClientValidationTrustedCaBundleArgs
- Type string
- (Updatable) Type of certificate.
- Ca
Bundle stringId - (Updatable) The OCID of the CA Bundle resource.
- Secret
Name string - (Updatable) Name of the secret. For Kubernetes this will be the name of an opaque Kubernetes secret with key ca.crt. For other platforms the secret must be mounted at: /etc/oci/secrets/${secretName}/ca.crt
- Type string
- (Updatable) Type of certificate.
- Ca
Bundle stringId - (Updatable) The OCID of the CA Bundle resource.
- Secret
Name string - (Updatable) Name of the secret. For Kubernetes this will be the name of an opaque Kubernetes secret with key ca.crt. For other platforms the secret must be mounted at: /etc/oci/secrets/${secretName}/ca.crt
- type String
- (Updatable) Type of certificate.
- ca
Bundle StringId - (Updatable) The OCID of the CA Bundle resource.
- secret
Name String - (Updatable) Name of the secret. For Kubernetes this will be the name of an opaque Kubernetes secret with key ca.crt. For other platforms the secret must be mounted at: /etc/oci/secrets/${secretName}/ca.crt
- type string
- (Updatable) Type of certificate.
- ca
Bundle stringId - (Updatable) The OCID of the CA Bundle resource.
- secret
Name string - (Updatable) Name of the secret. For Kubernetes this will be the name of an opaque Kubernetes secret with key ca.crt. For other platforms the secret must be mounted at: /etc/oci/secrets/${secretName}/ca.crt
- type str
- (Updatable) Type of certificate.
- ca_
bundle_ strid - (Updatable) The OCID of the CA Bundle resource.
- secret_
name str - (Updatable) Name of the secret. For Kubernetes this will be the name of an opaque Kubernetes secret with key ca.crt. For other platforms the secret must be mounted at: /etc/oci/secrets/${secretName}/ca.crt
- type String
- (Updatable) Type of certificate.
- ca
Bundle StringId - (Updatable) The OCID of the CA Bundle resource.
- secret
Name String - (Updatable) Name of the secret. For Kubernetes this will be the name of an opaque Kubernetes secret with key ca.crt. For other platforms the secret must be mounted at: /etc/oci/secrets/${secretName}/ca.crt
IngressGatewayHostListenerTlsServerCertificate, IngressGatewayHostListenerTlsServerCertificateArgs
- Type string
- (Updatable) Type of certificate.
- Certificate
Id string - (Updatable) The OCID of the leaf certificate resource.
- Secret
Name string - (Updatable) Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
- Type string
- (Updatable) Type of certificate.
- Certificate
Id string - (Updatable) The OCID of the leaf certificate resource.
- Secret
Name string - (Updatable) Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
- type String
- (Updatable) Type of certificate.
- certificate
Id String - (Updatable) The OCID of the leaf certificate resource.
- secret
Name String - (Updatable) Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
- type string
- (Updatable) Type of certificate.
- certificate
Id string - (Updatable) The OCID of the leaf certificate resource.
- secret
Name string - (Updatable) Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
- type str
- (Updatable) Type of certificate.
- certificate_
id str - (Updatable) The OCID of the leaf certificate resource.
- secret_
name str - (Updatable) Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
- type String
- (Updatable) Type of certificate.
- certificate
Id String - (Updatable) The OCID of the leaf certificate resource.
- secret
Name String - (Updatable) Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
IngressGatewayMtls, IngressGatewayMtlsArgs
- Certificate
Id string - The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
- Maximum
Validity int - (Updatable) The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
- Certificate
Id string - The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
- Maximum
Validity int - (Updatable) The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
- certificate
Id String - The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
- maximum
Validity Integer - (Updatable) The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
- certificate
Id string - The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
- maximum
Validity number - (Updatable) The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
- certificate_
id str - The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
- maximum_
validity int - (Updatable) The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
- certificate
Id String - The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
- maximum
Validity Number - (Updatable) The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
Import
IngressGateways can be imported using the id
, e.g.
$ pulumi import oci:ServiceMesh/ingressGateway:IngressGateway test_ingress_gateway "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.