fortimanager.ObjectSystemSdnconnectorExternalaccountlist
Explore with Pulumi AI
Configure AWS external account list.
This resource is a sub resource for variable
external_account_list
of resourcefortimanager.ObjectSystemSdnconnector
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectSystemSdnconnector = new fortimanager.ObjectSystemSdnconnector("trnameObjectSystemSdnconnector", {
accessKey: "key",
region: "remote",
});
const trnameObjectSystemSdnconnectorExternalaccountlist = new fortimanager.ObjectSystemSdnconnectorExternalaccountlist("trnameObjectSystemSdnconnectorExternalaccountlist", {
sdnConnector: trnameObjectSystemSdnconnector.name,
externalId: "12",
regionLists: ["region"],
roleArn: "12",
}, {
dependsOn: [trnameObjectSystemSdnconnector],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_system_sdnconnector = fortimanager.ObjectSystemSdnconnector("trnameObjectSystemSdnconnector",
access_key="key",
region="remote")
trname_object_system_sdnconnector_externalaccountlist = fortimanager.ObjectSystemSdnconnectorExternalaccountlist("trnameObjectSystemSdnconnectorExternalaccountlist",
sdn_connector=trname_object_system_sdnconnector.name,
external_id="12",
region_lists=["region"],
role_arn="12",
opts = pulumi.ResourceOptions(depends_on=[trname_object_system_sdnconnector]))
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
trnameObjectSystemSdnconnector, err := fortimanager.NewObjectSystemSdnconnector(ctx, "trnameObjectSystemSdnconnector", &fortimanager.ObjectSystemSdnconnectorArgs{
AccessKey: pulumi.String("key"),
Region: pulumi.String("remote"),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectSystemSdnconnectorExternalaccountlist(ctx, "trnameObjectSystemSdnconnectorExternalaccountlist", &fortimanager.ObjectSystemSdnconnectorExternalaccountlistArgs{
SdnConnector: trnameObjectSystemSdnconnector.Name,
ExternalId: pulumi.String("12"),
RegionLists: pulumi.StringArray{
pulumi.String("region"),
},
RoleArn: pulumi.String("12"),
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectSystemSdnconnector,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trnameObjectSystemSdnconnector = new Fortimanager.ObjectSystemSdnconnector("trnameObjectSystemSdnconnector", new()
{
AccessKey = "key",
Region = "remote",
});
var trnameObjectSystemSdnconnectorExternalaccountlist = new Fortimanager.ObjectSystemSdnconnectorExternalaccountlist("trnameObjectSystemSdnconnectorExternalaccountlist", new()
{
SdnConnector = trnameObjectSystemSdnconnector.Name,
ExternalId = "12",
RegionLists = new[]
{
"region",
},
RoleArn = "12",
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectSystemSdnconnector,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemSdnconnector;
import com.pulumi.fortimanager.ObjectSystemSdnconnectorArgs;
import com.pulumi.fortimanager.ObjectSystemSdnconnectorExternalaccountlist;
import com.pulumi.fortimanager.ObjectSystemSdnconnectorExternalaccountlistArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trnameObjectSystemSdnconnector = new ObjectSystemSdnconnector("trnameObjectSystemSdnconnector", ObjectSystemSdnconnectorArgs.builder()
.accessKey("key")
.region("remote")
.build());
var trnameObjectSystemSdnconnectorExternalaccountlist = new ObjectSystemSdnconnectorExternalaccountlist("trnameObjectSystemSdnconnectorExternalaccountlist", ObjectSystemSdnconnectorExternalaccountlistArgs.builder()
.sdnConnector(trnameObjectSystemSdnconnector.name())
.externalId(12)
.regionLists("region")
.roleArn(12)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectSystemSdnconnector)
.build());
}
}
resources:
trnameObjectSystemSdnconnectorExternalaccountlist:
type: fortimanager:ObjectSystemSdnconnectorExternalaccountlist
properties:
sdnConnector: ${trnameObjectSystemSdnconnector.name}
externalId: 12
regionLists:
- region
roleArn: 12
options:
dependsOn:
- ${trnameObjectSystemSdnconnector}
trnameObjectSystemSdnconnector:
type: fortimanager:ObjectSystemSdnconnector
properties:
accessKey: key
region: remote
Create ObjectSystemSdnconnectorExternalaccountlist Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemSdnconnectorExternalaccountlist(name: string, args: ObjectSystemSdnconnectorExternalaccountlistArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemSdnconnectorExternalaccountlist(resource_name: str,
args: ObjectSystemSdnconnectorExternalaccountlistArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemSdnconnectorExternalaccountlist(resource_name: str,
opts: Optional[ResourceOptions] = None,
sdn_connector: Optional[str] = None,
adom: Optional[str] = None,
external_id: Optional[str] = None,
object_system_sdnconnector_externalaccountlist_id: Optional[str] = None,
region_lists: Optional[Sequence[str]] = None,
role_arn: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectSystemSdnconnectorExternalaccountlist(ctx *Context, name string, args ObjectSystemSdnconnectorExternalaccountlistArgs, opts ...ResourceOption) (*ObjectSystemSdnconnectorExternalaccountlist, error)
public ObjectSystemSdnconnectorExternalaccountlist(string name, ObjectSystemSdnconnectorExternalaccountlistArgs args, CustomResourceOptions? opts = null)
public ObjectSystemSdnconnectorExternalaccountlist(String name, ObjectSystemSdnconnectorExternalaccountlistArgs args)
public ObjectSystemSdnconnectorExternalaccountlist(String name, ObjectSystemSdnconnectorExternalaccountlistArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemSdnconnectorExternalaccountlist
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 ObjectSystemSdnconnectorExternalaccountlistArgs
- 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 ObjectSystemSdnconnectorExternalaccountlistArgs
- 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 ObjectSystemSdnconnectorExternalaccountlistArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemSdnconnectorExternalaccountlistArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemSdnconnectorExternalaccountlistArgs
- 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 objectSystemSdnconnectorExternalaccountlistResource = new Fortimanager.ObjectSystemSdnconnectorExternalaccountlist("objectSystemSdnconnectorExternalaccountlistResource", new()
{
SdnConnector = "string",
Adom = "string",
ExternalId = "string",
ObjectSystemSdnconnectorExternalaccountlistId = "string",
RegionLists = new[]
{
"string",
},
RoleArn = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectSystemSdnconnectorExternalaccountlist(ctx, "objectSystemSdnconnectorExternalaccountlistResource", &fortimanager.ObjectSystemSdnconnectorExternalaccountlistArgs{
SdnConnector: pulumi.String("string"),
Adom: pulumi.String("string"),
ExternalId: pulumi.String("string"),
ObjectSystemSdnconnectorExternalaccountlistId: pulumi.String("string"),
RegionLists: pulumi.StringArray{
pulumi.String("string"),
},
RoleArn: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectSystemSdnconnectorExternalaccountlistResource = new ObjectSystemSdnconnectorExternalaccountlist("objectSystemSdnconnectorExternalaccountlistResource", ObjectSystemSdnconnectorExternalaccountlistArgs.builder()
.sdnConnector("string")
.adom("string")
.externalId("string")
.objectSystemSdnconnectorExternalaccountlistId("string")
.regionLists("string")
.roleArn("string")
.scopetype("string")
.build());
object_system_sdnconnector_externalaccountlist_resource = fortimanager.ObjectSystemSdnconnectorExternalaccountlist("objectSystemSdnconnectorExternalaccountlistResource",
sdn_connector="string",
adom="string",
external_id="string",
object_system_sdnconnector_externalaccountlist_id="string",
region_lists=["string"],
role_arn="string",
scopetype="string")
const objectSystemSdnconnectorExternalaccountlistResource = new fortimanager.ObjectSystemSdnconnectorExternalaccountlist("objectSystemSdnconnectorExternalaccountlistResource", {
sdnConnector: "string",
adom: "string",
externalId: "string",
objectSystemSdnconnectorExternalaccountlistId: "string",
regionLists: ["string"],
roleArn: "string",
scopetype: "string",
});
type: fortimanager:ObjectSystemSdnconnectorExternalaccountlist
properties:
adom: string
externalId: string
objectSystemSdnconnectorExternalaccountlistId: string
regionLists:
- string
roleArn: string
scopetype: string
sdnConnector: string
ObjectSystemSdnconnectorExternalaccountlist 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 ObjectSystemSdnconnectorExternalaccountlist resource accepts the following input properties:
- Sdn
Connector string - Sdn Connector.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - External
Id string - AWS external ID.
- Object
System stringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- Region
Lists List<string> - AWS region name list.
- Role
Arn string - AWS role ARN to assume.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Sdn
Connector string - Sdn Connector.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - External
Id string - AWS external ID.
- Object
System stringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- Region
Lists []string - AWS region name list.
- Role
Arn string - AWS role ARN to assume.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- sdn
Connector String - Sdn Connector.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external
Id String - AWS external ID.
- object
System StringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- region
Lists List<String> - AWS region name list.
- role
Arn String - AWS role ARN to assume.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- sdn
Connector string - Sdn Connector.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external
Id string - AWS external ID.
- object
System stringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- region
Lists string[] - AWS region name list.
- role
Arn string - AWS role ARN to assume.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- sdn_
connector str - Sdn Connector.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external_
id str - AWS external ID.
- object_
system_ strsdnconnector_ externalaccountlist_ id - an identifier for the resource with format {{role_arn}}.
- region_
lists Sequence[str] - AWS region name list.
- role_
arn str - AWS role ARN to assume.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- sdn
Connector String - Sdn Connector.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external
Id String - AWS external ID.
- object
System StringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- region
Lists List<String> - AWS region name list.
- role
Arn String - AWS role ARN to assume.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemSdnconnectorExternalaccountlist 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 ObjectSystemSdnconnectorExternalaccountlist Resource
Get an existing ObjectSystemSdnconnectorExternalaccountlist 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?: ObjectSystemSdnconnectorExternalaccountlistState, opts?: CustomResourceOptions): ObjectSystemSdnconnectorExternalaccountlist
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
external_id: Optional[str] = None,
object_system_sdnconnector_externalaccountlist_id: Optional[str] = None,
region_lists: Optional[Sequence[str]] = None,
role_arn: Optional[str] = None,
scopetype: Optional[str] = None,
sdn_connector: Optional[str] = None) -> ObjectSystemSdnconnectorExternalaccountlist
func GetObjectSystemSdnconnectorExternalaccountlist(ctx *Context, name string, id IDInput, state *ObjectSystemSdnconnectorExternalaccountlistState, opts ...ResourceOption) (*ObjectSystemSdnconnectorExternalaccountlist, error)
public static ObjectSystemSdnconnectorExternalaccountlist Get(string name, Input<string> id, ObjectSystemSdnconnectorExternalaccountlistState? state, CustomResourceOptions? opts = null)
public static ObjectSystemSdnconnectorExternalaccountlist get(String name, Output<String> id, ObjectSystemSdnconnectorExternalaccountlistState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemSdnconnectorExternalaccountlist get: id: ${id}
- 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - External
Id string - AWS external ID.
- Object
System stringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- Region
Lists List<string> - AWS region name list.
- Role
Arn string - AWS role ARN to assume.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sdn
Connector string - Sdn Connector.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - External
Id string - AWS external ID.
- Object
System stringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- Region
Lists []string - AWS region name list.
- Role
Arn string - AWS role ARN to assume.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sdn
Connector string - Sdn Connector.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external
Id String - AWS external ID.
- object
System StringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- region
Lists List<String> - AWS region name list.
- role
Arn String - AWS role ARN to assume.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sdn
Connector String - Sdn Connector.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external
Id string - AWS external ID.
- object
System stringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- region
Lists string[] - AWS region name list.
- role
Arn string - AWS role ARN to assume.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sdn
Connector string - Sdn Connector.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external_
id str - AWS external ID.
- object_
system_ strsdnconnector_ externalaccountlist_ id - an identifier for the resource with format {{role_arn}}.
- region_
lists Sequence[str] - AWS region name list.
- role_
arn str - AWS role ARN to assume.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sdn_
connector str - Sdn Connector.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - external
Id String - AWS external ID.
- object
System StringSdnconnector Externalaccountlist Id - an identifier for the resource with format {{role_arn}}.
- region
Lists List<String> - AWS region name list.
- role
Arn String - AWS role ARN to assume.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sdn
Connector String - Sdn Connector.
Import
ObjectSystem SdnConnectorExternalAccountList can be imported using any of these accepted formats:
Set import_options = [“sdn_connector=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemSdnconnectorExternalaccountlist:ObjectSystemSdnconnectorExternalaccountlist labelname {{role_arn}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.