1. Packages
  2. Aviatrix
  3. API Docs
  4. AviatrixAwsTgwIntraDomainInspection
Aviatrix v0.0.11 published on Saturday, Jun 17, 2023 by Aviatrix

aviatrix.AviatrixAwsTgwIntraDomainInspection

Explore with Pulumi AI

The aviatrix_aws_tgw_intra_domain_inspection resource allows the creation and management of intra domain inspection of security domains in an AWS TGW.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Aviatrix = Pulumi.Aviatrix;

return await Deployment.RunAsync(() => 
{
    // Create an Aviatrix Intra Domain Inspection
    var test = new Aviatrix.AviatrixAwsTgwIntraDomainInspection("test", new()
    {
        FirewallDomainName = "firewall-domain",
        RouteDomainName = "mysd",
        TgwName = "test-AWS-TGW",
    });

});
Copy
package main

import (
	"github.com/astipkovits/pulumi-aviatrix/sdk/go/aviatrix"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := aviatrix.NewAviatrixAwsTgwIntraDomainInspection(ctx, "test", &aviatrix.AviatrixAwsTgwIntraDomainInspectionArgs{
			FirewallDomainName: pulumi.String("firewall-domain"),
			RouteDomainName:    pulumi.String("mysd"),
			TgwName:            pulumi.String("test-AWS-TGW"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aviatrix.AviatrixAwsTgwIntraDomainInspection;
import com.pulumi.aviatrix.AviatrixAwsTgwIntraDomainInspectionArgs;
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 test = new AviatrixAwsTgwIntraDomainInspection("test", AviatrixAwsTgwIntraDomainInspectionArgs.builder()        
            .firewallDomainName("firewall-domain")
            .routeDomainName("mysd")
            .tgwName("test-AWS-TGW")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as aviatrix from "@pulumi/aviatrix";

// Create an Aviatrix Intra Domain Inspection
const test = new aviatrix.AviatrixAwsTgwIntraDomainInspection("test", {
    firewallDomainName: "firewall-domain",
    routeDomainName: "mysd",
    tgwName: "test-AWS-TGW",
});
Copy
import pulumi
import pulumi_aviatrix as aviatrix

# Create an Aviatrix Intra Domain Inspection
test = aviatrix.AviatrixAwsTgwIntraDomainInspection("test",
    firewall_domain_name="firewall-domain",
    route_domain_name="mysd",
    tgw_name="test-AWS-TGW")
Copy
resources:
  # Create an Aviatrix Intra Domain Inspection
  test:
    type: aviatrix:AviatrixAwsTgwIntraDomainInspection
    properties:
      firewallDomainName: firewall-domain
      routeDomainName: mysd
      tgwName: test-AWS-TGW
Copy

Create AviatrixAwsTgwIntraDomainInspection Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AviatrixAwsTgwIntraDomainInspection(name: string, args: AviatrixAwsTgwIntraDomainInspectionArgs, opts?: CustomResourceOptions);
@overload
def AviatrixAwsTgwIntraDomainInspection(resource_name: str,
                                        args: AviatrixAwsTgwIntraDomainInspectionArgs,
                                        opts: Optional[ResourceOptions] = None)

@overload
def AviatrixAwsTgwIntraDomainInspection(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        firewall_domain_name: Optional[str] = None,
                                        route_domain_name: Optional[str] = None,
                                        tgw_name: Optional[str] = None)
func NewAviatrixAwsTgwIntraDomainInspection(ctx *Context, name string, args AviatrixAwsTgwIntraDomainInspectionArgs, opts ...ResourceOption) (*AviatrixAwsTgwIntraDomainInspection, error)
public AviatrixAwsTgwIntraDomainInspection(string name, AviatrixAwsTgwIntraDomainInspectionArgs args, CustomResourceOptions? opts = null)
public AviatrixAwsTgwIntraDomainInspection(String name, AviatrixAwsTgwIntraDomainInspectionArgs args)
public AviatrixAwsTgwIntraDomainInspection(String name, AviatrixAwsTgwIntraDomainInspectionArgs args, CustomResourceOptions options)
type: aviatrix:AviatrixAwsTgwIntraDomainInspection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AviatrixAwsTgwIntraDomainInspectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AviatrixAwsTgwIntraDomainInspectionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AviatrixAwsTgwIntraDomainInspectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AviatrixAwsTgwIntraDomainInspectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AviatrixAwsTgwIntraDomainInspectionArgs
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 aviatrixAwsTgwIntraDomainInspectionResource = new Aviatrix.AviatrixAwsTgwIntraDomainInspection("aviatrixAwsTgwIntraDomainInspectionResource", new()
{
    FirewallDomainName = "string",
    RouteDomainName = "string",
    TgwName = "string",
});
Copy
example, err := aviatrix.NewAviatrixAwsTgwIntraDomainInspection(ctx, "aviatrixAwsTgwIntraDomainInspectionResource", &aviatrix.AviatrixAwsTgwIntraDomainInspectionArgs{
	FirewallDomainName: pulumi.String("string"),
	RouteDomainName:    pulumi.String("string"),
	TgwName:            pulumi.String("string"),
})
Copy
var aviatrixAwsTgwIntraDomainInspectionResource = new AviatrixAwsTgwIntraDomainInspection("aviatrixAwsTgwIntraDomainInspectionResource", AviatrixAwsTgwIntraDomainInspectionArgs.builder()
    .firewallDomainName("string")
    .routeDomainName("string")
    .tgwName("string")
    .build());
Copy
aviatrix_aws_tgw_intra_domain_inspection_resource = aviatrix.AviatrixAwsTgwIntraDomainInspection("aviatrixAwsTgwIntraDomainInspectionResource",
    firewall_domain_name="string",
    route_domain_name="string",
    tgw_name="string")
Copy
const aviatrixAwsTgwIntraDomainInspectionResource = new aviatrix.AviatrixAwsTgwIntraDomainInspection("aviatrixAwsTgwIntraDomainInspectionResource", {
    firewallDomainName: "string",
    routeDomainName: "string",
    tgwName: "string",
});
Copy
type: aviatrix:AviatrixAwsTgwIntraDomainInspection
properties:
    firewallDomainName: string
    routeDomainName: string
    tgwName: string
Copy

AviatrixAwsTgwIntraDomainInspection Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AviatrixAwsTgwIntraDomainInspection resource accepts the following input properties:

FirewallDomainName
This property is required.
Changes to this property will trigger replacement.
string
The name of a firewall security domain.
RouteDomainName
This property is required.
Changes to this property will trigger replacement.
string
The name of a security domain.
TgwName
This property is required.
Changes to this property will trigger replacement.
string
The AWS TGW name.
FirewallDomainName
This property is required.
Changes to this property will trigger replacement.
string
The name of a firewall security domain.
RouteDomainName
This property is required.
Changes to this property will trigger replacement.
string
The name of a security domain.
TgwName
This property is required.
Changes to this property will trigger replacement.
string
The AWS TGW name.
firewallDomainName
This property is required.
Changes to this property will trigger replacement.
String
The name of a firewall security domain.
routeDomainName
This property is required.
Changes to this property will trigger replacement.
String
The name of a security domain.
tgwName
This property is required.
Changes to this property will trigger replacement.
String
The AWS TGW name.
firewallDomainName
This property is required.
Changes to this property will trigger replacement.
string
The name of a firewall security domain.
routeDomainName
This property is required.
Changes to this property will trigger replacement.
string
The name of a security domain.
tgwName
This property is required.
Changes to this property will trigger replacement.
string
The AWS TGW name.
firewall_domain_name
This property is required.
Changes to this property will trigger replacement.
str
The name of a firewall security domain.
route_domain_name
This property is required.
Changes to this property will trigger replacement.
str
The name of a security domain.
tgw_name
This property is required.
Changes to this property will trigger replacement.
str
The AWS TGW name.
firewallDomainName
This property is required.
Changes to this property will trigger replacement.
String
The name of a firewall security domain.
routeDomainName
This property is required.
Changes to this property will trigger replacement.
String
The name of a security domain.
tgwName
This property is required.
Changes to this property will trigger replacement.
String
The AWS TGW name.

Outputs

All input properties are implicitly available as output properties. Additionally, the AviatrixAwsTgwIntraDomainInspection resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AviatrixAwsTgwIntraDomainInspection Resource

Get an existing AviatrixAwsTgwIntraDomainInspection 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?: AviatrixAwsTgwIntraDomainInspectionState, opts?: CustomResourceOptions): AviatrixAwsTgwIntraDomainInspection
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        firewall_domain_name: Optional[str] = None,
        route_domain_name: Optional[str] = None,
        tgw_name: Optional[str] = None) -> AviatrixAwsTgwIntraDomainInspection
func GetAviatrixAwsTgwIntraDomainInspection(ctx *Context, name string, id IDInput, state *AviatrixAwsTgwIntraDomainInspectionState, opts ...ResourceOption) (*AviatrixAwsTgwIntraDomainInspection, error)
public static AviatrixAwsTgwIntraDomainInspection Get(string name, Input<string> id, AviatrixAwsTgwIntraDomainInspectionState? state, CustomResourceOptions? opts = null)
public static AviatrixAwsTgwIntraDomainInspection get(String name, Output<String> id, AviatrixAwsTgwIntraDomainInspectionState state, CustomResourceOptions options)
resources:  _:    type: aviatrix:AviatrixAwsTgwIntraDomainInspection    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
FirewallDomainName Changes to this property will trigger replacement. string
The name of a firewall security domain.
RouteDomainName Changes to this property will trigger replacement. string
The name of a security domain.
TgwName Changes to this property will trigger replacement. string
The AWS TGW name.
FirewallDomainName Changes to this property will trigger replacement. string
The name of a firewall security domain.
RouteDomainName Changes to this property will trigger replacement. string
The name of a security domain.
TgwName Changes to this property will trigger replacement. string
The AWS TGW name.
firewallDomainName Changes to this property will trigger replacement. String
The name of a firewall security domain.
routeDomainName Changes to this property will trigger replacement. String
The name of a security domain.
tgwName Changes to this property will trigger replacement. String
The AWS TGW name.
firewallDomainName Changes to this property will trigger replacement. string
The name of a firewall security domain.
routeDomainName Changes to this property will trigger replacement. string
The name of a security domain.
tgwName Changes to this property will trigger replacement. string
The AWS TGW name.
firewall_domain_name Changes to this property will trigger replacement. str
The name of a firewall security domain.
route_domain_name Changes to this property will trigger replacement. str
The name of a security domain.
tgw_name Changes to this property will trigger replacement. str
The AWS TGW name.
firewallDomainName Changes to this property will trigger replacement. String
The name of a firewall security domain.
routeDomainName Changes to this property will trigger replacement. String
The name of a security domain.
tgwName Changes to this property will trigger replacement. String
The AWS TGW name.

Import

aviatrix_aws_tgw_intra_domain_inspection can be imported using the tgw_name and route_domain_name, e.g.

 $ pulumi import aviatrix:index/aviatrixAwsTgwIntraDomainInspection:AviatrixAwsTgwIntraDomainInspection test tgw_name~route_domain_name
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
aviatrix astipkovits/pulumi-aviatrix
License
Apache-2.0
Notes
This Pulumi package is based on the aviatrix Terraform Provider.