aviatrix.AviatrixAwsGuardDuty
Explore with Pulumi AI
Import
aws_guard_duty resource can be imported with the account_name
and region
in the form “account_name~~region”, e.g.
$ pulumi import aviatrix:index/aviatrixAwsGuardDuty:AviatrixAwsGuardDuty test_aws_guard_duty devops-acc~~us-west-1
Example Usage
using System.Collections.Generic;
using Pulumi;
using Aviatrix = Pulumi.Aviatrix;
return await Deployment.RunAsync(() =>
{
// Configure AWS GuardDuty
var testAwsGuardDuty = new Aviatrix.AviatrixAwsGuardDuty("testAwsGuardDuty", new()
{
AccountName = aviatrix_account.Account_1.Account_name,
Region = "us-west-1",
ExcludedIps = new[]
{
"127.0.0.1",
"10.0.0.1",
},
});
});
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.NewAviatrixAwsGuardDuty(ctx, "testAwsGuardDuty", &aviatrix.AviatrixAwsGuardDutyArgs{
AccountName: pulumi.Any(aviatrix_account.Account_1.Account_name),
Region: pulumi.String("us-west-1"),
ExcludedIps: pulumi.StringArray{
pulumi.String("127.0.0.1"),
pulumi.String("10.0.0.1"),
},
})
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.AviatrixAwsGuardDuty;
import com.pulumi.aviatrix.AviatrixAwsGuardDutyArgs;
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 testAwsGuardDuty = new AviatrixAwsGuardDuty("testAwsGuardDuty", AviatrixAwsGuardDutyArgs.builder()
.accountName(aviatrix_account.account_1().account_name())
.region("us-west-1")
.excludedIps(
"127.0.0.1",
"10.0.0.1")
.build());
}
}
import pulumi
import pulumi_aviatrix as aviatrix
# Configure AWS GuardDuty
test_aws_guard_duty = aviatrix.AviatrixAwsGuardDuty("testAwsGuardDuty",
account_name=aviatrix_account["account_1"]["account_name"],
region="us-west-1",
excluded_ips=[
"127.0.0.1",
"10.0.0.1",
])
import * as pulumi from "@pulumi/pulumi";
import * as aviatrix from "@astipkovits/aviatrix";
// Configure AWS GuardDuty
const testAwsGuardDuty = new aviatrix.AviatrixAwsGuardDuty("testAwsGuardDuty", {
accountName: aviatrix_account.account_1.account_name,
region: "us-west-1",
excludedIps: [
"127.0.0.1",
"10.0.0.1",
],
});
resources:
# Configure AWS GuardDuty
testAwsGuardDuty:
type: aviatrix:AviatrixAwsGuardDuty
properties:
accountName: ${aviatrix_account.account_1.account_name}
region: us-west-1
excludedIps:
- 127.0.0.1
- 10.0.0.1
Create AviatrixAwsGuardDuty Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AviatrixAwsGuardDuty(name: string, args: AviatrixAwsGuardDutyArgs, opts?: CustomResourceOptions);
@overload
def AviatrixAwsGuardDuty(resource_name: str,
args: AviatrixAwsGuardDutyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AviatrixAwsGuardDuty(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
region: Optional[str] = None,
excluded_ips: Optional[Sequence[str]] = None)
func NewAviatrixAwsGuardDuty(ctx *Context, name string, args AviatrixAwsGuardDutyArgs, opts ...ResourceOption) (*AviatrixAwsGuardDuty, error)
public AviatrixAwsGuardDuty(string name, AviatrixAwsGuardDutyArgs args, CustomResourceOptions? opts = null)
public AviatrixAwsGuardDuty(String name, AviatrixAwsGuardDutyArgs args)
public AviatrixAwsGuardDuty(String name, AviatrixAwsGuardDutyArgs args, CustomResourceOptions options)
type: aviatrix:AviatrixAwsGuardDuty
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 AviatrixAwsGuardDutyArgs
- 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 AviatrixAwsGuardDutyArgs
- 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 AviatrixAwsGuardDutyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AviatrixAwsGuardDutyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AviatrixAwsGuardDutyArgs
- 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 aviatrixAwsGuardDutyResource = new Aviatrix.AviatrixAwsGuardDuty("aviatrixAwsGuardDutyResource", new()
{
AccountName = "string",
Region = "string",
ExcludedIps = new[]
{
"string",
},
});
example, err := aviatrix.NewAviatrixAwsGuardDuty(ctx, "aviatrixAwsGuardDutyResource", &aviatrix.AviatrixAwsGuardDutyArgs{
AccountName: pulumi.String("string"),
Region: pulumi.String("string"),
ExcludedIps: pulumi.StringArray{
pulumi.String("string"),
},
})
var aviatrixAwsGuardDutyResource = new AviatrixAwsGuardDuty("aviatrixAwsGuardDutyResource", AviatrixAwsGuardDutyArgs.builder()
.accountName("string")
.region("string")
.excludedIps("string")
.build());
aviatrix_aws_guard_duty_resource = aviatrix.AviatrixAwsGuardDuty("aviatrixAwsGuardDutyResource",
account_name="string",
region="string",
excluded_ips=["string"])
const aviatrixAwsGuardDutyResource = new aviatrix.AviatrixAwsGuardDuty("aviatrixAwsGuardDutyResource", {
accountName: "string",
region: "string",
excludedIps: ["string"],
});
type: aviatrix:AviatrixAwsGuardDuty
properties:
accountName: string
excludedIps:
- string
region: string
AviatrixAwsGuardDuty 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 AviatrixAwsGuardDuty resource accepts the following input properties:
- Account
Name string - Account name.
- Region string
- Region.
- Excluded
Ips List<string> - Set of excluded IPs.
- Account
Name string - Account name.
- Region string
- Region.
- Excluded
Ips []string - Set of excluded IPs.
- account
Name String - Account name.
- region String
- Region.
- excluded
Ips List<String> - Set of excluded IPs.
- account
Name string - Account name.
- region string
- Region.
- excluded
Ips string[] - Set of excluded IPs.
- account_
name str - Account name.
- region str
- Region.
- excluded_
ips Sequence[str] - Set of excluded IPs.
- account
Name String - Account name.
- region String
- Region.
- excluded
Ips List<String> - Set of excluded IPs.
Outputs
All input properties are implicitly available as output properties. Additionally, the AviatrixAwsGuardDuty 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 AviatrixAwsGuardDuty Resource
Get an existing AviatrixAwsGuardDuty 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?: AviatrixAwsGuardDutyState, opts?: CustomResourceOptions): AviatrixAwsGuardDuty
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
excluded_ips: Optional[Sequence[str]] = None,
region: Optional[str] = None) -> AviatrixAwsGuardDuty
func GetAviatrixAwsGuardDuty(ctx *Context, name string, id IDInput, state *AviatrixAwsGuardDutyState, opts ...ResourceOption) (*AviatrixAwsGuardDuty, error)
public static AviatrixAwsGuardDuty Get(string name, Input<string> id, AviatrixAwsGuardDutyState? state, CustomResourceOptions? opts = null)
public static AviatrixAwsGuardDuty get(String name, Output<String> id, AviatrixAwsGuardDutyState 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.
- Account
Name string - Account name.
- Excluded
Ips List<string> - Set of excluded IPs.
- Region string
- Region.
- Account
Name string - Account name.
- Excluded
Ips []string - Set of excluded IPs.
- Region string
- Region.
- account
Name String - Account name.
- excluded
Ips List<String> - Set of excluded IPs.
- region String
- Region.
- account
Name string - Account name.
- excluded
Ips string[] - Set of excluded IPs.
- region string
- Region.
- account_
name str - Account name.
- excluded_
ips Sequence[str] - Set of excluded IPs.
- region str
- Region.
- account
Name String - Account name.
- excluded
Ips List<String> - Set of excluded IPs.
- region String
- Region.
Package Details
- Repository
- aviatrix astipkovits/pulumi-aviatrix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aviatrix
Terraform Provider.