MongoDB Atlas v3.7.2, Mar 31 23
MongoDB Atlas v3.7.2, Mar 31 23
mongodbatlas.ProjectIpAccessList
Explore with Pulumi AI
mongodbatlas.ProjectIpAccessList
provides an IP Access List entry resource. The access list grants access from IPs, CIDRs or AWS Security Groups (if VPC Peering is enabled) to clusters within the Project.
NOTE: Groups and projects are synonymous terms. You may find
groupId
in the official documentation.
IMPORTANT: When you remove an entry from the access list, existing connections from the removed address(es) may remain open for a variable amount of time. How much time passes before Atlas closes the connection depends on several factors, including how the connection was established, the particular behavior of the application or driver using the address, and the connection protocol (e.g., TCP or UDP). This is particularly important to consider when changing an existing IP address or CIDR block as they cannot be updated via the Provider (comments can however), hence a change will force the destruction and recreation of entries.
Example Usage
Using CIDR Block
using System.Collections.Generic;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;
return await Deployment.RunAsync(() =>
{
var test = new Mongodbatlas.ProjectIpAccessList("test", new()
{
CidrBlock = "1.2.3.4/32",
Comment = "cidr block for tf acc testing",
ProjectId = "<PROJECT-ID>",
});
});
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mongodbatlas.NewProjectIpAccessList(ctx, "test", &mongodbatlas.ProjectIpAccessListArgs{
CidrBlock: pulumi.String("1.2.3.4/32"),
Comment: pulumi.String("cidr block for tf acc testing"),
ProjectId: pulumi.String("<PROJECT-ID>"),
})
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.mongodbatlas.ProjectIpAccessList;
import com.pulumi.mongodbatlas.ProjectIpAccessListArgs;
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 ProjectIpAccessList("test", ProjectIpAccessListArgs.builder()
.cidrBlock("1.2.3.4/32")
.comment("cidr block for tf acc testing")
.projectId("<PROJECT-ID>")
.build());
}
}
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.ProjectIpAccessList("test",
cidr_block="1.2.3.4/32",
comment="cidr block for tf acc testing",
project_id="<PROJECT-ID>")
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = new mongodbatlas.ProjectIpAccessList("test", {
cidrBlock: "1.2.3.4/32",
comment: "cidr block for tf acc testing",
projectId: "<PROJECT-ID>",
});
resources:
test:
type: mongodbatlas:ProjectIpAccessList
properties:
cidrBlock: 1.2.3.4/32
comment: cidr block for tf acc testing
projectId: <PROJECT-ID>
Using IP Address
using System.Collections.Generic;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;
return await Deployment.RunAsync(() =>
{
var test = new Mongodbatlas.ProjectIpAccessList("test", new()
{
Comment = "ip address for tf acc testing",
IpAddress = "2.3.4.5",
ProjectId = "<PROJECT-ID>",
});
});
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mongodbatlas.NewProjectIpAccessList(ctx, "test", &mongodbatlas.ProjectIpAccessListArgs{
Comment: pulumi.String("ip address for tf acc testing"),
IpAddress: pulumi.String("2.3.4.5"),
ProjectId: pulumi.String("<PROJECT-ID>"),
})
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.mongodbatlas.ProjectIpAccessList;
import com.pulumi.mongodbatlas.ProjectIpAccessListArgs;
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 ProjectIpAccessList("test", ProjectIpAccessListArgs.builder()
.comment("ip address for tf acc testing")
.ipAddress("2.3.4.5")
.projectId("<PROJECT-ID>")
.build());
}
}
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.ProjectIpAccessList("test",
comment="ip address for tf acc testing",
ip_address="2.3.4.5",
project_id="<PROJECT-ID>")
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = new mongodbatlas.ProjectIpAccessList("test", {
comment: "ip address for tf acc testing",
ipAddress: "2.3.4.5",
projectId: "<PROJECT-ID>",
});
resources:
test:
type: mongodbatlas:ProjectIpAccessList
properties:
comment: ip address for tf acc testing
ipAddress: 2.3.4.5
projectId: <PROJECT-ID>
Using an AWS Security Group
using System.Collections.Generic;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;
return await Deployment.RunAsync(() =>
{
var testNetworkContainer = new Mongodbatlas.NetworkContainer("testNetworkContainer", new()
{
ProjectId = "<PROJECT-ID>",
AtlasCidrBlock = "192.168.208.0/21",
ProviderName = "AWS",
RegionName = "US_EAST_1",
});
var testNetworkPeering = new Mongodbatlas.NetworkPeering("testNetworkPeering", new()
{
ProjectId = "<PROJECT-ID>",
ContainerId = testNetworkContainer.ContainerId,
AccepterRegionName = "us-east-1",
ProviderName = "AWS",
RouteTableCidrBlock = "172.31.0.0/16",
VpcId = "vpc-0d93d6f69f1578bd8",
AwsAccountId = "232589400519",
});
var testProjectIpAccessList = new Mongodbatlas.ProjectIpAccessList("testProjectIpAccessList", new()
{
ProjectId = "<PROJECT-ID>",
AwsSecurityGroup = "sg-0026348ec11780bd1",
Comment = "TestAcc for awsSecurityGroup",
}, new CustomResourceOptions
{
DependsOn = new[]
{
"mongodbatlas_network_peering.test",
},
});
});
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
testNetworkContainer, err := mongodbatlas.NewNetworkContainer(ctx, "testNetworkContainer", &mongodbatlas.NetworkContainerArgs{
ProjectId: pulumi.String("<PROJECT-ID>"),
AtlasCidrBlock: pulumi.String("192.168.208.0/21"),
ProviderName: pulumi.String("AWS"),
RegionName: pulumi.String("US_EAST_1"),
})
if err != nil {
return err
}
_, err = mongodbatlas.NewNetworkPeering(ctx, "testNetworkPeering", &mongodbatlas.NetworkPeeringArgs{
ProjectId: pulumi.String("<PROJECT-ID>"),
ContainerId: testNetworkContainer.ContainerId,
AccepterRegionName: pulumi.String("us-east-1"),
ProviderName: pulumi.String("AWS"),
RouteTableCidrBlock: pulumi.String("172.31.0.0/16"),
VpcId: pulumi.String("vpc-0d93d6f69f1578bd8"),
AwsAccountId: pulumi.String("232589400519"),
})
if err != nil {
return err
}
_, err = mongodbatlas.NewProjectIpAccessList(ctx, "testProjectIpAccessList", &mongodbatlas.ProjectIpAccessListArgs{
ProjectId: pulumi.String("<PROJECT-ID>"),
AwsSecurityGroup: pulumi.String("sg-0026348ec11780bd1"),
Comment: pulumi.String("TestAcc for awsSecurityGroup"),
}, pulumi.DependsOn([]pulumi.Resource{
pulumi.Resource("mongodbatlas_network_peering.test"),
}))
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.mongodbatlas.NetworkContainer;
import com.pulumi.mongodbatlas.NetworkContainerArgs;
import com.pulumi.mongodbatlas.NetworkPeering;
import com.pulumi.mongodbatlas.NetworkPeeringArgs;
import com.pulumi.mongodbatlas.ProjectIpAccessList;
import com.pulumi.mongodbatlas.ProjectIpAccessListArgs;
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 testNetworkContainer = new NetworkContainer("testNetworkContainer", NetworkContainerArgs.builder()
.projectId("<PROJECT-ID>")
.atlasCidrBlock("192.168.208.0/21")
.providerName("AWS")
.regionName("US_EAST_1")
.build());
var testNetworkPeering = new NetworkPeering("testNetworkPeering", NetworkPeeringArgs.builder()
.projectId("<PROJECT-ID>")
.containerId(testNetworkContainer.containerId())
.accepterRegionName("us-east-1")
.providerName("AWS")
.routeTableCidrBlock("172.31.0.0/16")
.vpcId("vpc-0d93d6f69f1578bd8")
.awsAccountId("232589400519")
.build());
var testProjectIpAccessList = new ProjectIpAccessList("testProjectIpAccessList", ProjectIpAccessListArgs.builder()
.projectId("<PROJECT-ID>")
.awsSecurityGroup("sg-0026348ec11780bd1")
.comment("TestAcc for awsSecurityGroup")
.build(), CustomResourceOptions.builder()
.dependsOn("mongodbatlas_network_peering.test")
.build());
}
}
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test_network_container = mongodbatlas.NetworkContainer("testNetworkContainer",
project_id="<PROJECT-ID>",
atlas_cidr_block="192.168.208.0/21",
provider_name="AWS",
region_name="US_EAST_1")
test_network_peering = mongodbatlas.NetworkPeering("testNetworkPeering",
project_id="<PROJECT-ID>",
container_id=test_network_container.container_id,
accepter_region_name="us-east-1",
provider_name="AWS",
route_table_cidr_block="172.31.0.0/16",
vpc_id="vpc-0d93d6f69f1578bd8",
aws_account_id="232589400519")
test_project_ip_access_list = mongodbatlas.ProjectIpAccessList("testProjectIpAccessList",
project_id="<PROJECT-ID>",
aws_security_group="sg-0026348ec11780bd1",
comment="TestAcc for awsSecurityGroup",
opts=pulumi.ResourceOptions(depends_on=["mongodbatlas_network_peering.test"]))
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const testNetworkContainer = new mongodbatlas.NetworkContainer("testNetworkContainer", {
projectId: "<PROJECT-ID>",
atlasCidrBlock: "192.168.208.0/21",
providerName: "AWS",
regionName: "US_EAST_1",
});
const testNetworkPeering = new mongodbatlas.NetworkPeering("testNetworkPeering", {
projectId: "<PROJECT-ID>",
containerId: testNetworkContainer.containerId,
accepterRegionName: "us-east-1",
providerName: "AWS",
routeTableCidrBlock: "172.31.0.0/16",
vpcId: "vpc-0d93d6f69f1578bd8",
awsAccountId: "232589400519",
});
const testProjectIpAccessList = new mongodbatlas.ProjectIpAccessList("testProjectIpAccessList", {
projectId: "<PROJECT-ID>",
awsSecurityGroup: "sg-0026348ec11780bd1",
comment: "TestAcc for awsSecurityGroup",
}, {
dependsOn: ["mongodbatlas_network_peering.test"],
});
resources:
testNetworkContainer:
type: mongodbatlas:NetworkContainer
properties:
projectId: <PROJECT-ID>
atlasCidrBlock: 192.168.208.0/21
providerName: AWS
regionName: US_EAST_1
testNetworkPeering:
type: mongodbatlas:NetworkPeering
properties:
projectId: <PROJECT-ID>
containerId: ${testNetworkContainer.containerId}
accepterRegionName: us-east-1
providerName: AWS
routeTableCidrBlock: 172.31.0.0/16
vpcId: vpc-0d93d6f69f1578bd8
awsAccountId: '232589400519'
testProjectIpAccessList:
type: mongodbatlas:ProjectIpAccessList
properties:
projectId: <PROJECT-ID>
awsSecurityGroup: sg-0026348ec11780bd1
comment: TestAcc for awsSecurityGroup
options:
dependson:
- mongodbatlas_network_peering.test
Create ProjectIpAccessList Resource
new ProjectIpAccessList(name: string, args: ProjectIpAccessListArgs, opts?: CustomResourceOptions);
@overload
def ProjectIpAccessList(resource_name: str,
opts: Optional[ResourceOptions] = None,
aws_security_group: Optional[str] = None,
cidr_block: Optional[str] = None,
comment: Optional[str] = None,
ip_address: Optional[str] = None,
project_id: Optional[str] = None)
@overload
def ProjectIpAccessList(resource_name: str,
args: ProjectIpAccessListArgs,
opts: Optional[ResourceOptions] = None)
func NewProjectIpAccessList(ctx *Context, name string, args ProjectIpAccessListArgs, opts ...ResourceOption) (*ProjectIpAccessList, error)
public ProjectIpAccessList(string name, ProjectIpAccessListArgs args, CustomResourceOptions? opts = null)
public ProjectIpAccessList(String name, ProjectIpAccessListArgs args)
public ProjectIpAccessList(String name, ProjectIpAccessListArgs args, CustomResourceOptions options)
type: mongodbatlas:ProjectIpAccessList
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectIpAccessListArgs
- 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 ProjectIpAccessListArgs
- 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 ProjectIpAccessListArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectIpAccessListArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectIpAccessListArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ProjectIpAccessList 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 ProjectIpAccessList resource accepts the following input properties:
- Project
Id string Unique identifier for the project to which you want to add one or more access list entries.
- Aws
Security stringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Cidr
Block string Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Comment string
Comment to add to the access list entry.
- Ip
Address string Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.
- Project
Id string Unique identifier for the project to which you want to add one or more access list entries.
- Aws
Security stringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Cidr
Block string Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Comment string
Comment to add to the access list entry.
- Ip
Address string Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.
- project
Id String Unique identifier for the project to which you want to add one or more access list entries.
- aws
Security StringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr
Block String Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment String
Comment to add to the access list entry.
- ip
Address String Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.
- project
Id string Unique identifier for the project to which you want to add one or more access list entries.
- aws
Security stringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr
Block string Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment string
Comment to add to the access list entry.
- ip
Address string Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.
- project_
id str Unique identifier for the project to which you want to add one or more access list entries.
- aws_
security_ strgroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr_
block str Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment str
Comment to add to the access list entry.
- ip_
address str Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.
- project
Id String Unique identifier for the project to which you want to add one or more access list entries.
- aws
Security StringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr
Block String Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment String
Comment to add to the access list entry.
- ip
Address String Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectIpAccessList 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 ProjectIpAccessList Resource
Get an existing ProjectIpAccessList 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?: ProjectIpAccessListState, opts?: CustomResourceOptions): ProjectIpAccessList
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aws_security_group: Optional[str] = None,
cidr_block: Optional[str] = None,
comment: Optional[str] = None,
ip_address: Optional[str] = None,
project_id: Optional[str] = None) -> ProjectIpAccessList
func GetProjectIpAccessList(ctx *Context, name string, id IDInput, state *ProjectIpAccessListState, opts ...ResourceOption) (*ProjectIpAccessList, error)
public static ProjectIpAccessList Get(string name, Input<string> id, ProjectIpAccessListState? state, CustomResourceOptions? opts = null)
public static ProjectIpAccessList get(String name, Output<String> id, ProjectIpAccessListState 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.
- Aws
Security stringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Cidr
Block string Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Comment string
Comment to add to the access list entry.
- Ip
Address string Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.- Project
Id string Unique identifier for the project to which you want to add one or more access list entries.
- Aws
Security stringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Cidr
Block string Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- Comment string
Comment to add to the access list entry.
- Ip
Address string Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.- Project
Id string Unique identifier for the project to which you want to add one or more access list entries.
- aws
Security StringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr
Block String Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment String
Comment to add to the access list entry.
- ip
Address String Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.- project
Id String Unique identifier for the project to which you want to add one or more access list entries.
- aws
Security stringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr
Block string Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment string
Comment to add to the access list entry.
- ip
Address string Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.- project
Id string Unique identifier for the project to which you want to add one or more access list entries.
- aws_
security_ strgroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr_
block str Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment str
Comment to add to the access list entry.
- ip_
address str Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.- project_
id str Unique identifier for the project to which you want to add one or more access list entries.
- aws
Security StringGroup Unique identifier of the AWS security group to add to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- cidr
Block String Range of IP addresses in CIDR notation to be added to the access list. Your access list entry can include only one
awsSecurityGroup
, onecidrBlock
, or oneipAddress
.- comment String
Comment to add to the access list entry.
- ip
Address String Single IP address to be added to the access list. Mutually exclusive with
awsSecurityGroup
andcidrBlock
.- project
Id String Unique identifier for the project to which you want to add one or more access list entries.
Import
IP Access List entries can be imported using the project_id
and cidr_block
or ip_address
, e.g.
$ pulumi import mongodbatlas:index/projectIpAccessList:ProjectIpAccessList test 5d0f1f74cf09a29120e123cd-10.242.88.0/21
For more information seeMongoDB Atlas API Reference.
Package Details
- Repository
- MongoDB Atlas pulumi/pulumi-mongodbatlas
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
mongodbatlas
Terraform Provider.