1. Packages
  2. Ibm Provider
  3. API Docs
  4. AtrackerSettings
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.AtrackerSettings

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Create, update, and delete atracker_settingss with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const atrackerSettingsInstance = new ibm.AtrackerSettings("atrackerSettingsInstance", {
        defaultTargets: [ibm_atracker_target.atracker_target_instance.id],
        metadataRegionBackup: "eu-de",
        metadataRegionPrimary: "us-south",
        permittedTargetRegions: us_south,
        privateApiEndpointOnly: false,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    atracker_settings_instance = ibm.AtrackerSettings("atrackerSettingsInstance",
        default_targets=[ibm_atracker_target["atracker_target_instance"]["id"]],
        metadata_region_backup="eu-de",
        metadata_region_primary="us-south",
        permitted_target_regions=us_south,
        private_api_endpoint_only=False)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewAtrackerSettings(ctx, "atrackerSettingsInstance", &ibm.AtrackerSettingsArgs{
    			DefaultTargets: pulumi.StringArray{
    				ibm_atracker_target.Atracker_target_instance.Id,
    			},
    			MetadataRegionBackup:   pulumi.String("eu-de"),
    			MetadataRegionPrimary:  pulumi.String("us-south"),
    			PermittedTargetRegions: pulumi.Any(us_south),
    			PrivateApiEndpointOnly: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var atrackerSettingsInstance = new Ibm.AtrackerSettings("atrackerSettingsInstance", new()
        {
            DefaultTargets = new[]
            {
                ibm_atracker_target.Atracker_target_instance.Id,
            },
            MetadataRegionBackup = "eu-de",
            MetadataRegionPrimary = "us-south",
            PermittedTargetRegions = us_south,
            PrivateApiEndpointOnly = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.AtrackerSettings;
    import com.pulumi.ibm.AtrackerSettingsArgs;
    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 atrackerSettingsInstance = new AtrackerSettings("atrackerSettingsInstance", AtrackerSettingsArgs.builder()
                .defaultTargets(ibm_atracker_target.atracker_target_instance().id())
                .metadataRegionBackup("eu-de")
                .metadataRegionPrimary("us-south")
                .permittedTargetRegions(us_south)
                .privateApiEndpointOnly(false)
                .build());
    
        }
    }
    
    resources:
      atrackerSettingsInstance:
        type: ibm:AtrackerSettings
        properties:
          defaultTargets:
            - ${ibm_atracker_target.atracker_target_instance.id}
          metadataRegionBackup: eu-de
          metadataRegionPrimary: us-south
          permittedTargetRegions: ${["us-south"]}
          privateApiEndpointOnly: false
    

    Create AtrackerSettings Resource

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

    Constructor syntax

    new AtrackerSettings(name: string, args: AtrackerSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def AtrackerSettings(resource_name: str,
                         args: AtrackerSettingsArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AtrackerSettings(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         metadata_region_primary: Optional[str] = None,
                         private_api_endpoint_only: Optional[bool] = None,
                         atracker_settings_id: Optional[str] = None,
                         default_targets: Optional[Sequence[str]] = None,
                         metadata_region_backup: Optional[str] = None,
                         permitted_target_regions: Optional[Sequence[str]] = None)
    func NewAtrackerSettings(ctx *Context, name string, args AtrackerSettingsArgs, opts ...ResourceOption) (*AtrackerSettings, error)
    public AtrackerSettings(string name, AtrackerSettingsArgs args, CustomResourceOptions? opts = null)
    public AtrackerSettings(String name, AtrackerSettingsArgs args)
    public AtrackerSettings(String name, AtrackerSettingsArgs args, CustomResourceOptions options)
    
    type: ibm:AtrackerSettings
    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 AtrackerSettingsArgs
    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 AtrackerSettingsArgs
    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 AtrackerSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AtrackerSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AtrackerSettingsArgs
    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 atrackerSettingsResource = new Ibm.AtrackerSettings("atrackerSettingsResource", new()
    {
        MetadataRegionPrimary = "string",
        PrivateApiEndpointOnly = false,
        AtrackerSettingsId = "string",
        DefaultTargets = new[]
        {
            "string",
        },
        MetadataRegionBackup = "string",
        PermittedTargetRegions = new[]
        {
            "string",
        },
    });
    
    example, err := ibm.NewAtrackerSettings(ctx, "atrackerSettingsResource", &ibm.AtrackerSettingsArgs{
    	MetadataRegionPrimary:  pulumi.String("string"),
    	PrivateApiEndpointOnly: pulumi.Bool(false),
    	AtrackerSettingsId:     pulumi.String("string"),
    	DefaultTargets: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	MetadataRegionBackup: pulumi.String("string"),
    	PermittedTargetRegions: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var atrackerSettingsResource = new AtrackerSettings("atrackerSettingsResource", AtrackerSettingsArgs.builder()
        .metadataRegionPrimary("string")
        .privateApiEndpointOnly(false)
        .atrackerSettingsId("string")
        .defaultTargets("string")
        .metadataRegionBackup("string")
        .permittedTargetRegions("string")
        .build());
    
    atracker_settings_resource = ibm.AtrackerSettings("atrackerSettingsResource",
        metadata_region_primary="string",
        private_api_endpoint_only=False,
        atracker_settings_id="string",
        default_targets=["string"],
        metadata_region_backup="string",
        permitted_target_regions=["string"])
    
    const atrackerSettingsResource = new ibm.AtrackerSettings("atrackerSettingsResource", {
        metadataRegionPrimary: "string",
        privateApiEndpointOnly: false,
        atrackerSettingsId: "string",
        defaultTargets: ["string"],
        metadataRegionBackup: "string",
        permittedTargetRegions: ["string"],
    });
    
    type: ibm:AtrackerSettings
    properties:
        atrackerSettingsId: string
        defaultTargets:
            - string
        metadataRegionBackup: string
        metadataRegionPrimary: string
        permittedTargetRegions:
            - string
        privateApiEndpointOnly: false
    

    AtrackerSettings 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 AtrackerSettings resource accepts the following input properties:

    MetadataRegionPrimary string
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    PrivateApiEndpointOnly bool
    If you set this true then you cannot access api through public network.
    AtrackerSettingsId string
    The unique identifier of the atracker_settings.
    DefaultTargets List<string>
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    MetadataRegionBackup string
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    PermittedTargetRegions List<string>
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    MetadataRegionPrimary string
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    PrivateApiEndpointOnly bool
    If you set this true then you cannot access api through public network.
    AtrackerSettingsId string
    The unique identifier of the atracker_settings.
    DefaultTargets []string
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    MetadataRegionBackup string
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    PermittedTargetRegions []string
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    metadataRegionPrimary String
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    privateApiEndpointOnly Boolean
    If you set this true then you cannot access api through public network.
    atrackerSettingsId String
    The unique identifier of the atracker_settings.
    defaultTargets List<String>
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    metadataRegionBackup String
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permittedTargetRegions List<String>
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    metadataRegionPrimary string
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    privateApiEndpointOnly boolean
    If you set this true then you cannot access api through public network.
    atrackerSettingsId string
    The unique identifier of the atracker_settings.
    defaultTargets string[]
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    metadataRegionBackup string
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permittedTargetRegions string[]
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    metadata_region_primary str
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    private_api_endpoint_only bool
    If you set this true then you cannot access api through public network.
    atracker_settings_id str
    The unique identifier of the atracker_settings.
    default_targets Sequence[str]
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    metadata_region_backup str
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permitted_target_regions Sequence[str]
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    metadataRegionPrimary String
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    privateApiEndpointOnly Boolean
    If you set this true then you cannot access api through public network.
    atrackerSettingsId String
    The unique identifier of the atracker_settings.
    defaultTargets List<String>
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    metadataRegionBackup String
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permittedTargetRegions List<String>
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.

    Outputs

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

    ApiVersion double
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    Id string
    The provider-assigned unique ID for this managed resource.
    Message string
    (String) An optional message containing information about the audit log locations.
    ApiVersion float64
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    Id string
    The provider-assigned unique ID for this managed resource.
    Message string
    (String) An optional message containing information about the audit log locations.
    apiVersion Double
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    id String
    The provider-assigned unique ID for this managed resource.
    message String
    (String) An optional message containing information about the audit log locations.
    apiVersion number
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    id string
    The provider-assigned unique ID for this managed resource.
    message string
    (String) An optional message containing information about the audit log locations.
    api_version float
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    id str
    The provider-assigned unique ID for this managed resource.
    message str
    (String) An optional message containing information about the audit log locations.
    apiVersion Number
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    id String
    The provider-assigned unique ID for this managed resource.
    message String
    (String) An optional message containing information about the audit log locations.

    Look up Existing AtrackerSettings Resource

    Get an existing AtrackerSettings 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?: AtrackerSettingsState, opts?: CustomResourceOptions): AtrackerSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_version: Optional[float] = None,
            atracker_settings_id: Optional[str] = None,
            default_targets: Optional[Sequence[str]] = None,
            message: Optional[str] = None,
            metadata_region_backup: Optional[str] = None,
            metadata_region_primary: Optional[str] = None,
            permitted_target_regions: Optional[Sequence[str]] = None,
            private_api_endpoint_only: Optional[bool] = None) -> AtrackerSettings
    func GetAtrackerSettings(ctx *Context, name string, id IDInput, state *AtrackerSettingsState, opts ...ResourceOption) (*AtrackerSettings, error)
    public static AtrackerSettings Get(string name, Input<string> id, AtrackerSettingsState? state, CustomResourceOptions? opts = null)
    public static AtrackerSettings get(String name, Output<String> id, AtrackerSettingsState state, CustomResourceOptions options)
    resources:  _:    type: ibm:AtrackerSettings    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.
    The following state arguments are supported:
    ApiVersion double
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    AtrackerSettingsId string
    The unique identifier of the atracker_settings.
    DefaultTargets List<string>
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    Message string
    (String) An optional message containing information about the audit log locations.
    MetadataRegionBackup string
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    MetadataRegionPrimary string
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    PermittedTargetRegions List<string>
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    PrivateApiEndpointOnly bool
    If you set this true then you cannot access api through public network.
    ApiVersion float64
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    AtrackerSettingsId string
    The unique identifier of the atracker_settings.
    DefaultTargets []string
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    Message string
    (String) An optional message containing information about the audit log locations.
    MetadataRegionBackup string
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    MetadataRegionPrimary string
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    PermittedTargetRegions []string
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    PrivateApiEndpointOnly bool
    If you set this true then you cannot access api through public network.
    apiVersion Double
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    atrackerSettingsId String
    The unique identifier of the atracker_settings.
    defaultTargets List<String>
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    message String
    (String) An optional message containing information about the audit log locations.
    metadataRegionBackup String
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    metadataRegionPrimary String
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permittedTargetRegions List<String>
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    privateApiEndpointOnly Boolean
    If you set this true then you cannot access api through public network.
    apiVersion number
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    atrackerSettingsId string
    The unique identifier of the atracker_settings.
    defaultTargets string[]
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    message string
    (String) An optional message containing information about the audit log locations.
    metadataRegionBackup string
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    metadataRegionPrimary string
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permittedTargetRegions string[]
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    privateApiEndpointOnly boolean
    If you set this true then you cannot access api through public network.
    api_version float
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    atracker_settings_id str
    The unique identifier of the atracker_settings.
    default_targets Sequence[str]
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    message str
    (String) An optional message containing information about the audit log locations.
    metadata_region_backup str
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    metadata_region_primary str
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permitted_target_regions Sequence[str]
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    private_api_endpoint_only bool
    If you set this true then you cannot access api through public network.
    apiVersion Number
    (Integer) API version used for configuring IBM Cloud Activity Tracker Event Routing resources in the account.

    • Constraints: The maximum value is 2. The minimum value is 2.
    atrackerSettingsId String
    The unique identifier of the atracker_settings.
    defaultTargets List<String>
    The target ID List. In the event that no routing rule causes the event to be sent to a target, these targets will receive the event.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -]/.
    message String
    (String) An optional message containing information about the audit log locations.
    metadataRegionBackup String
    To store all your meta data in a backup region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    metadataRegionPrimary String
    To store all your meta data in a single region.

    • Constraints: The maximum length is 256 characters. The minimum length is 3 characters. The value must match regular expression /^[a-zA-Z0-9 -_]/.
    permittedTargetRegions List<String>
    If present then only these regions may be used to define a target.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9 -_]/.
    privateApiEndpointOnly Boolean
    If you set this true then you cannot access api through public network.

    Import

    You can import the ibm_atracker_settings resource by using metadata_region_primary. To store all your meta data in a single region.

    Syntax

    
    ```sh
    $ pulumi import ibm:index/atrackerSettings:AtrackerSettings atracker_settings <metadata_region_primary>
    ```
    
    

    Example

    $ pulumi import ibm:index/atrackerSettings:AtrackerSettings atracker_settings us-south
    

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

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud