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",
});
});
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
})
}
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());
}
}
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")
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",
});
resources:
# Create an Aviatrix Intra Domain Inspection
test:
type: aviatrix:AviatrixAwsTgwIntraDomainInspection
properties:
firewallDomainName: firewall-domain
routeDomainName: mysd
tgwName: test-AWS-TGW
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 string
- The unique name of the resource.
- args AviatrixAwsTgwIntraDomainInspectionArgs
- 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 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 string
- The unique name of the resource.
- args AviatrixAwsTgwIntraDomainInspectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AviatrixAwsTgwIntraDomainInspectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
example, err := aviatrix.NewAviatrixAwsTgwIntraDomainInspection(ctx, "aviatrixAwsTgwIntraDomainInspectionResource", &aviatrix.AviatrixAwsTgwIntraDomainInspectionArgs{
FirewallDomainName: pulumi.String("string"),
RouteDomainName: pulumi.String("string"),
TgwName: pulumi.String("string"),
})
var aviatrixAwsTgwIntraDomainInspectionResource = new AviatrixAwsTgwIntraDomainInspection("aviatrixAwsTgwIntraDomainInspectionResource", AviatrixAwsTgwIntraDomainInspectionArgs.builder()
.firewallDomainName("string")
.routeDomainName("string")
.tgwName("string")
.build());
aviatrix_aws_tgw_intra_domain_inspection_resource = aviatrix.AviatrixAwsTgwIntraDomainInspection("aviatrixAwsTgwIntraDomainInspectionResource",
firewall_domain_name="string",
route_domain_name="string",
tgw_name="string")
const aviatrixAwsTgwIntraDomainInspectionResource = new aviatrix.AviatrixAwsTgwIntraDomainInspection("aviatrixAwsTgwIntraDomainInspectionResource", {
firewallDomainName: "string",
routeDomainName: "string",
tgwName: "string",
});
type: aviatrix:AviatrixAwsTgwIntraDomainInspection
properties:
firewallDomainName: string
routeDomainName: string
tgwName: string
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
The AviatrixAwsTgwIntraDomainInspection resource accepts the following input properties:
- Firewall
Domain stringName - The name of a firewall security domain.
- Route
Domain stringName - The name of a security domain.
- Tgw
Name string - The AWS TGW name.
- Firewall
Domain stringName - The name of a firewall security domain.
- Route
Domain stringName - The name of a security domain.
- Tgw
Name string - The AWS TGW name.
- firewall
Domain StringName - The name of a firewall security domain.
- route
Domain StringName - The name of a security domain.
- tgw
Name String - The AWS TGW name.
- firewall
Domain stringName - The name of a firewall security domain.
- route
Domain stringName - The name of a security domain.
- tgw
Name string - The AWS TGW name.
- firewall_
domain_ strname - The name of a firewall security domain.
- route_
domain_ strname - The name of a security domain.
- tgw_
name str - The AWS TGW name.
- firewall
Domain StringName - The name of a firewall security domain.
- route
Domain StringName - The name of a security domain.
- tgw
Name 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)
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.
- Firewall
Domain stringName - The name of a firewall security domain.
- Route
Domain stringName - The name of a security domain.
- Tgw
Name string - The AWS TGW name.
- Firewall
Domain stringName - The name of a firewall security domain.
- Route
Domain stringName - The name of a security domain.
- Tgw
Name string - The AWS TGW name.
- firewall
Domain StringName - The name of a firewall security domain.
- route
Domain StringName - The name of a security domain.
- tgw
Name String - The AWS TGW name.
- firewall
Domain stringName - The name of a firewall security domain.
- route
Domain stringName - The name of a security domain.
- tgw
Name string - The AWS TGW name.
- firewall_
domain_ strname - The name of a firewall security domain.
- route_
domain_ strname - The name of a security domain.
- tgw_
name str - The AWS TGW name.
- firewall
Domain StringName - The name of a firewall security domain.
- route
Domain StringName - The name of a security domain.
- tgw
Name 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
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.