ns1.Team
Explore with Pulumi AI
Provides a NS1 Team resource. This can be used to create, modify, and delete
teams. The credentials used must have the manage_teams
permission set.
NS1 Documentation
Example Usage
using System.Collections.Generic;
using Pulumi;
using Ns1 = Pulumi.Ns1;
return await Deployment.RunAsync(() =>
{
// Create a new NS1 Team
var example = new Ns1.Team("example", new()
{
AccountManageUsers = false,
DnsViewZones = false,
IpWhitelists = new[]
{
new Ns1.Inputs.TeamIpWhitelistArgs
{
Name = "whitelist-1",
Values = new[]
{
"1.1.1.1",
"2.2.2.2",
},
},
new Ns1.Inputs.TeamIpWhitelistArgs
{
Name = "whitelist-2",
Values = new[]
{
"3.3.3.3",
"4.4.4.4",
},
},
},
});
// Another team
var example2 = new Ns1.Team("example2", new()
{
DataManageDatasources = true,
DnsRecordsAllows = new[]
{
new Ns1.Inputs.TeamDnsRecordsAllowArgs
{
Domain = "terraform.example.io",
IncludeSubdomains = false,
Type = "A",
Zone = "example.io",
},
},
DnsViewZones = true,
DnsZonesAllows = new[]
{
"mytest.zone",
},
DnsZonesAllowByDefault = true,
DnsZonesDenies = new[]
{
"myother.zone",
},
});
});
package main
import (
"github.com/pulumi/pulumi-ns1/sdk/v3/go/ns1"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ns1.NewTeam(ctx, "example", &ns1.TeamArgs{
AccountManageUsers: pulumi.Bool(false),
DnsViewZones: pulumi.Bool(false),
IpWhitelists: ns1.TeamIpWhitelistArray{
&ns1.TeamIpWhitelistArgs{
Name: pulumi.String("whitelist-1"),
Values: pulumi.StringArray{
pulumi.String("1.1.1.1"),
pulumi.String("2.2.2.2"),
},
},
&ns1.TeamIpWhitelistArgs{
Name: pulumi.String("whitelist-2"),
Values: pulumi.StringArray{
pulumi.String("3.3.3.3"),
pulumi.String("4.4.4.4"),
},
},
},
})
if err != nil {
return err
}
_, err = ns1.NewTeam(ctx, "example2", &ns1.TeamArgs{
DataManageDatasources: pulumi.Bool(true),
DnsRecordsAllows: ns1.TeamDnsRecordsAllowArray{
&ns1.TeamDnsRecordsAllowArgs{
Domain: pulumi.String("terraform.example.io"),
IncludeSubdomains: pulumi.Bool(false),
Type: pulumi.String("A"),
Zone: pulumi.String("example.io"),
},
},
DnsViewZones: pulumi.Bool(true),
DnsZonesAllows: pulumi.StringArray{
pulumi.String("mytest.zone"),
},
DnsZonesAllowByDefault: pulumi.Bool(true),
DnsZonesDenies: pulumi.StringArray{
pulumi.String("myother.zone"),
},
})
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.ns1.Team;
import com.pulumi.ns1.TeamArgs;
import com.pulumi.ns1.inputs.TeamIpWhitelistArgs;
import com.pulumi.ns1.inputs.TeamDnsRecordsAllowArgs;
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 example = new Team("example", TeamArgs.builder()
.accountManageUsers(false)
.dnsViewZones(false)
.ipWhitelists(
TeamIpWhitelistArgs.builder()
.name("whitelist-1")
.values(
"1.1.1.1",
"2.2.2.2")
.build(),
TeamIpWhitelistArgs.builder()
.name("whitelist-2")
.values(
"3.3.3.3",
"4.4.4.4")
.build())
.build());
var example2 = new Team("example2", TeamArgs.builder()
.dataManageDatasources(true)
.dnsRecordsAllows(TeamDnsRecordsAllowArgs.builder()
.domain("terraform.example.io")
.includeSubdomains(false)
.type("A")
.zone("example.io")
.build())
.dnsViewZones(true)
.dnsZonesAllows("mytest.zone")
.dnsZonesAllowByDefault(true)
.dnsZonesDenies("myother.zone")
.build());
}
}
import pulumi
import pulumi_ns1 as ns1
# Create a new NS1 Team
example = ns1.Team("example",
account_manage_users=False,
dns_view_zones=False,
ip_whitelists=[
ns1.TeamIpWhitelistArgs(
name="whitelist-1",
values=[
"1.1.1.1",
"2.2.2.2",
],
),
ns1.TeamIpWhitelistArgs(
name="whitelist-2",
values=[
"3.3.3.3",
"4.4.4.4",
],
),
])
# Another team
example2 = ns1.Team("example2",
data_manage_datasources=True,
dns_records_allows=[ns1.TeamDnsRecordsAllowArgs(
domain="terraform.example.io",
include_subdomains=False,
type="A",
zone="example.io",
)],
dns_view_zones=True,
dns_zones_allows=["mytest.zone"],
dns_zones_allow_by_default=True,
dns_zones_denies=["myother.zone"])
import * as pulumi from "@pulumi/pulumi";
import * as ns1 from "@pulumi/ns1";
// Create a new NS1 Team
const example = new ns1.Team("example", {
accountManageUsers: false,
dnsViewZones: false,
ipWhitelists: [
{
name: "whitelist-1",
values: [
"1.1.1.1",
"2.2.2.2",
],
},
{
name: "whitelist-2",
values: [
"3.3.3.3",
"4.4.4.4",
],
},
],
});
// Another team
const example2 = new ns1.Team("example2", {
dataManageDatasources: true,
dnsRecordsAllows: [{
domain: "terraform.example.io",
includeSubdomains: false,
type: "A",
zone: "example.io",
}],
dnsViewZones: true,
dnsZonesAllows: ["mytest.zone"],
dnsZonesAllowByDefault: true,
dnsZonesDenies: ["myother.zone"],
});
resources:
# Create a new NS1 Team
example:
type: ns1:Team
properties:
accountManageUsers: false
# Configure permissions
dnsViewZones: false
ipWhitelists:
- name: whitelist-1
values:
- 1.1.1.1
- 2.2.2.2
- name: whitelist-2
values:
- 3.3.3.3
- 4.4.4.4
# Another team
example2:
type: ns1:Team
properties:
dataManageDatasources: true
dnsRecordsAllows:
- domain: terraform.example.io
includeSubdomains: false
type: A
zone: example.io
dnsViewZones: true
dnsZonesAllows:
- mytest.zone
dnsZonesAllowByDefault: true
dnsZonesDenies:
- myother.zone
Create Team Resource
new Team(name: string, args?: TeamArgs, opts?: CustomResourceOptions);
@overload
def Team(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_manage_account_settings: Optional[bool] = None,
account_manage_apikeys: Optional[bool] = None,
account_manage_ip_whitelist: Optional[bool] = None,
account_manage_payment_methods: Optional[bool] = None,
account_manage_plan: Optional[bool] = None,
account_manage_teams: Optional[bool] = None,
account_manage_users: Optional[bool] = None,
account_view_activity_log: Optional[bool] = None,
account_view_invoices: Optional[bool] = None,
data_manage_datafeeds: Optional[bool] = None,
data_manage_datasources: Optional[bool] = None,
data_push_to_datafeeds: Optional[bool] = None,
dhcp_manage_dhcp: Optional[bool] = None,
dhcp_view_dhcp: Optional[bool] = None,
dns_manage_zones: Optional[bool] = None,
dns_records_allows: Optional[Sequence[TeamDnsRecordsAllowArgs]] = None,
dns_records_denies: Optional[Sequence[TeamDnsRecordsDenyArgs]] = None,
dns_view_zones: Optional[bool] = None,
dns_zones_allow_by_default: Optional[bool] = None,
dns_zones_allows: Optional[Sequence[str]] = None,
dns_zones_denies: Optional[Sequence[str]] = None,
ip_whitelists: Optional[Sequence[TeamIpWhitelistArgs]] = None,
ipam_manage_ipam: Optional[bool] = None,
ipam_view_ipam: Optional[bool] = None,
monitoring_manage_jobs: Optional[bool] = None,
monitoring_manage_lists: Optional[bool] = None,
monitoring_view_jobs: Optional[bool] = None,
name: Optional[str] = None,
security_manage_active_directory: Optional[bool] = None,
security_manage_global2fa: Optional[bool] = None)
@overload
def Team(resource_name: str,
args: Optional[TeamArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewTeam(ctx *Context, name string, args *TeamArgs, opts ...ResourceOption) (*Team, error)
public Team(string name, TeamArgs? args = null, CustomResourceOptions? opts = null)
type: ns1:Team
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeamArgs
- 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 TeamArgs
- 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 TeamArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TeamArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TeamArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Team 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 Team resource accepts the following input properties:
- Account
Manage boolAccount Settings Whether the team can modify account settings.
- Account
Manage boolApikeys Whether the team can modify account apikeys.
- Account
Manage boolIp Whitelist Whether the team can manage ip whitelist.
- Account
Manage boolPayment Methods Whether the team can modify account payment methods.
- Account
Manage boolPlan No longer in use.
obsolete, should no longer be used
- Account
Manage boolTeams Whether the team can modify other teams in the account.
- Account
Manage boolUsers Whether the team can modify account users.
- Account
View boolActivity Log Whether the team can view activity logs.
- Account
View boolInvoices Whether the team can view invoices.
- Data
Manage boolDatafeeds Whether the team can modify data feeds.
- Data
Manage boolDatasources Whether the team can modify data sources.
- Data
Push boolTo Datafeeds Whether the team can publish to data feeds.
- Dhcp
Manage boolDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- Dhcp
View boolDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- Dns
Manage boolZones Whether the team can modify the accounts zones.
- Dns
Records List<TeamAllows Dns Records Allow Args> List of records that the team may access.
- Dns
Records List<TeamDenies Dns Records Deny Args> List of records that the team may not access.
- Dns
View boolZones Whether the team can view the accounts zones.
- Dns
Zones boolAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- Dns
Zones List<string>Allows List of zones that the team may access.
- Dns
Zones List<string>Denies List of zones that the team may not access.
- Ip
Whitelists List<TeamIp Whitelist Args> Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- Ipam
Manage boolIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- Ipam
View boolIpam Whether the team can view IPAM. Only relevant for the DDI product.
- Monitoring
Manage boolJobs Whether the team can modify monitoring jobs.
- Monitoring
Manage boolLists Whether the team can modify notification lists.
- Monitoring
View boolJobs Whether the team can view monitoring jobs.
- Name string
The free form name of the team.
- Security
Manage boolActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- Security
Manage boolGlobal2fa Whether the team can manage global two factor authentication.
- Account
Manage boolAccount Settings Whether the team can modify account settings.
- Account
Manage boolApikeys Whether the team can modify account apikeys.
- Account
Manage boolIp Whitelist Whether the team can manage ip whitelist.
- Account
Manage boolPayment Methods Whether the team can modify account payment methods.
- Account
Manage boolPlan No longer in use.
obsolete, should no longer be used
- Account
Manage boolTeams Whether the team can modify other teams in the account.
- Account
Manage boolUsers Whether the team can modify account users.
- Account
View boolActivity Log Whether the team can view activity logs.
- Account
View boolInvoices Whether the team can view invoices.
- Data
Manage boolDatafeeds Whether the team can modify data feeds.
- Data
Manage boolDatasources Whether the team can modify data sources.
- Data
Push boolTo Datafeeds Whether the team can publish to data feeds.
- Dhcp
Manage boolDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- Dhcp
View boolDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- Dns
Manage boolZones Whether the team can modify the accounts zones.
- Dns
Records []TeamAllows Dns Records Allow Args List of records that the team may access.
- Dns
Records []TeamDenies Dns Records Deny Args List of records that the team may not access.
- Dns
View boolZones Whether the team can view the accounts zones.
- Dns
Zones boolAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- Dns
Zones []stringAllows List of zones that the team may access.
- Dns
Zones []stringDenies List of zones that the team may not access.
- Ip
Whitelists []TeamIp Whitelist Args Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- Ipam
Manage boolIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- Ipam
View boolIpam Whether the team can view IPAM. Only relevant for the DDI product.
- Monitoring
Manage boolJobs Whether the team can modify monitoring jobs.
- Monitoring
Manage boolLists Whether the team can modify notification lists.
- Monitoring
View boolJobs Whether the team can view monitoring jobs.
- Name string
The free form name of the team.
- Security
Manage boolActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- Security
Manage boolGlobal2fa Whether the team can manage global two factor authentication.
- account
Manage BooleanAccount Settings Whether the team can modify account settings.
- account
Manage BooleanApikeys Whether the team can modify account apikeys.
- account
Manage BooleanIp Whitelist Whether the team can manage ip whitelist.
- account
Manage BooleanPayment Methods Whether the team can modify account payment methods.
- account
Manage BooleanPlan No longer in use.
obsolete, should no longer be used
- account
Manage BooleanTeams Whether the team can modify other teams in the account.
- account
Manage BooleanUsers Whether the team can modify account users.
- account
View BooleanActivity Log Whether the team can view activity logs.
- account
View BooleanInvoices Whether the team can view invoices.
- data
Manage BooleanDatafeeds Whether the team can modify data feeds.
- data
Manage BooleanDatasources Whether the team can modify data sources.
- data
Push BooleanTo Datafeeds Whether the team can publish to data feeds.
- dhcp
Manage BooleanDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp
View BooleanDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns
Manage BooleanZones Whether the team can modify the accounts zones.
- dns
Records List<TeamAllows Dns Records Allow Args> List of records that the team may access.
- dns
Records List<TeamDenies Dns Records Deny Args> List of records that the team may not access.
- dns
View BooleanZones Whether the team can view the accounts zones.
- dns
Zones BooleanAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns
Zones List<String>Allows List of zones that the team may access.
- dns
Zones List<String>Denies List of zones that the team may not access.
- ip
Whitelists List<TeamIp Whitelist Args> Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam
Manage BooleanIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam
View BooleanIpam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring
Manage BooleanJobs Whether the team can modify monitoring jobs.
- monitoring
Manage BooleanLists Whether the team can modify notification lists.
- monitoring
View BooleanJobs Whether the team can view monitoring jobs.
- name String
The free form name of the team.
- security
Manage BooleanActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security
Manage BooleanGlobal2fa Whether the team can manage global two factor authentication.
- account
Manage booleanAccount Settings Whether the team can modify account settings.
- account
Manage booleanApikeys Whether the team can modify account apikeys.
- account
Manage booleanIp Whitelist Whether the team can manage ip whitelist.
- account
Manage booleanPayment Methods Whether the team can modify account payment methods.
- account
Manage booleanPlan No longer in use.
obsolete, should no longer be used
- account
Manage booleanTeams Whether the team can modify other teams in the account.
- account
Manage booleanUsers Whether the team can modify account users.
- account
View booleanActivity Log Whether the team can view activity logs.
- account
View booleanInvoices Whether the team can view invoices.
- data
Manage booleanDatafeeds Whether the team can modify data feeds.
- data
Manage booleanDatasources Whether the team can modify data sources.
- data
Push booleanTo Datafeeds Whether the team can publish to data feeds.
- dhcp
Manage booleanDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp
View booleanDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns
Manage booleanZones Whether the team can modify the accounts zones.
- dns
Records TeamAllows Dns Records Allow Args[] List of records that the team may access.
- dns
Records TeamDenies Dns Records Deny Args[] List of records that the team may not access.
- dns
View booleanZones Whether the team can view the accounts zones.
- dns
Zones booleanAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns
Zones string[]Allows List of zones that the team may access.
- dns
Zones string[]Denies List of zones that the team may not access.
- ip
Whitelists TeamIp Whitelist Args[] Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam
Manage booleanIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam
View booleanIpam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring
Manage booleanJobs Whether the team can modify monitoring jobs.
- monitoring
Manage booleanLists Whether the team can modify notification lists.
- monitoring
View booleanJobs Whether the team can view monitoring jobs.
- name string
The free form name of the team.
- security
Manage booleanActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security
Manage booleanGlobal2fa Whether the team can manage global two factor authentication.
- account_
manage_ boolaccount_ settings Whether the team can modify account settings.
- account_
manage_ boolapikeys Whether the team can modify account apikeys.
- account_
manage_ boolip_ whitelist Whether the team can manage ip whitelist.
- account_
manage_ boolpayment_ methods Whether the team can modify account payment methods.
- account_
manage_ boolplan No longer in use.
obsolete, should no longer be used
- account_
manage_ boolteams Whether the team can modify other teams in the account.
- account_
manage_ boolusers Whether the team can modify account users.
- account_
view_ boolactivity_ log Whether the team can view activity logs.
- account_
view_ boolinvoices Whether the team can view invoices.
- data_
manage_ booldatafeeds Whether the team can modify data feeds.
- data_
manage_ booldatasources Whether the team can modify data sources.
- data_
push_ boolto_ datafeeds Whether the team can publish to data feeds.
- dhcp_
manage_ booldhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp_
view_ booldhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns_
manage_ boolzones Whether the team can modify the accounts zones.
- dns_
records_ Sequence[Teamallows Dns Records Allow Args] List of records that the team may access.
- dns_
records_ Sequence[Teamdenies Dns Records Deny Args] List of records that the team may not access.
- dns_
view_ boolzones Whether the team can view the accounts zones.
- dns_
zones_ boolallow_ by_ default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns_
zones_ Sequence[str]allows List of zones that the team may access.
- dns_
zones_ Sequence[str]denies List of zones that the team may not access.
- ip_
whitelists Sequence[TeamIp Whitelist Args] Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam_
manage_ boolipam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam_
view_ boolipam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring_
manage_ booljobs Whether the team can modify monitoring jobs.
- monitoring_
manage_ boollists Whether the team can modify notification lists.
- monitoring_
view_ booljobs Whether the team can view monitoring jobs.
- name str
The free form name of the team.
- security_
manage_ boolactive_ directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security_
manage_ boolglobal2fa Whether the team can manage global two factor authentication.
- account
Manage BooleanAccount Settings Whether the team can modify account settings.
- account
Manage BooleanApikeys Whether the team can modify account apikeys.
- account
Manage BooleanIp Whitelist Whether the team can manage ip whitelist.
- account
Manage BooleanPayment Methods Whether the team can modify account payment methods.
- account
Manage BooleanPlan No longer in use.
obsolete, should no longer be used
- account
Manage BooleanTeams Whether the team can modify other teams in the account.
- account
Manage BooleanUsers Whether the team can modify account users.
- account
View BooleanActivity Log Whether the team can view activity logs.
- account
View BooleanInvoices Whether the team can view invoices.
- data
Manage BooleanDatafeeds Whether the team can modify data feeds.
- data
Manage BooleanDatasources Whether the team can modify data sources.
- data
Push BooleanTo Datafeeds Whether the team can publish to data feeds.
- dhcp
Manage BooleanDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp
View BooleanDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns
Manage BooleanZones Whether the team can modify the accounts zones.
- dns
Records List<Property Map>Allows List of records that the team may access.
- dns
Records List<Property Map>Denies List of records that the team may not access.
- dns
View BooleanZones Whether the team can view the accounts zones.
- dns
Zones BooleanAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns
Zones List<String>Allows List of zones that the team may access.
- dns
Zones List<String>Denies List of zones that the team may not access.
- ip
Whitelists List<Property Map> Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam
Manage BooleanIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam
View BooleanIpam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring
Manage BooleanJobs Whether the team can modify monitoring jobs.
- monitoring
Manage BooleanLists Whether the team can modify notification lists.
- monitoring
View BooleanJobs Whether the team can view monitoring jobs.
- name String
The free form name of the team.
- security
Manage BooleanActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security
Manage BooleanGlobal2fa Whether the team can manage global two factor authentication.
Outputs
All input properties are implicitly available as output properties. Additionally, the Team 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 Team Resource
Get an existing Team 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?: TeamState, opts?: CustomResourceOptions): Team
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_manage_account_settings: Optional[bool] = None,
account_manage_apikeys: Optional[bool] = None,
account_manage_ip_whitelist: Optional[bool] = None,
account_manage_payment_methods: Optional[bool] = None,
account_manage_plan: Optional[bool] = None,
account_manage_teams: Optional[bool] = None,
account_manage_users: Optional[bool] = None,
account_view_activity_log: Optional[bool] = None,
account_view_invoices: Optional[bool] = None,
data_manage_datafeeds: Optional[bool] = None,
data_manage_datasources: Optional[bool] = None,
data_push_to_datafeeds: Optional[bool] = None,
dhcp_manage_dhcp: Optional[bool] = None,
dhcp_view_dhcp: Optional[bool] = None,
dns_manage_zones: Optional[bool] = None,
dns_records_allows: Optional[Sequence[TeamDnsRecordsAllowArgs]] = None,
dns_records_denies: Optional[Sequence[TeamDnsRecordsDenyArgs]] = None,
dns_view_zones: Optional[bool] = None,
dns_zones_allow_by_default: Optional[bool] = None,
dns_zones_allows: Optional[Sequence[str]] = None,
dns_zones_denies: Optional[Sequence[str]] = None,
ip_whitelists: Optional[Sequence[TeamIpWhitelistArgs]] = None,
ipam_manage_ipam: Optional[bool] = None,
ipam_view_ipam: Optional[bool] = None,
monitoring_manage_jobs: Optional[bool] = None,
monitoring_manage_lists: Optional[bool] = None,
monitoring_view_jobs: Optional[bool] = None,
name: Optional[str] = None,
security_manage_active_directory: Optional[bool] = None,
security_manage_global2fa: Optional[bool] = None) -> Team
func GetTeam(ctx *Context, name string, id IDInput, state *TeamState, opts ...ResourceOption) (*Team, error)
public static Team Get(string name, Input<string> id, TeamState? state, CustomResourceOptions? opts = null)
public static Team get(String name, Output<String> id, TeamState 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
Manage boolAccount Settings Whether the team can modify account settings.
- Account
Manage boolApikeys Whether the team can modify account apikeys.
- Account
Manage boolIp Whitelist Whether the team can manage ip whitelist.
- Account
Manage boolPayment Methods Whether the team can modify account payment methods.
- Account
Manage boolPlan No longer in use.
obsolete, should no longer be used
- Account
Manage boolTeams Whether the team can modify other teams in the account.
- Account
Manage boolUsers Whether the team can modify account users.
- Account
View boolActivity Log Whether the team can view activity logs.
- Account
View boolInvoices Whether the team can view invoices.
- Data
Manage boolDatafeeds Whether the team can modify data feeds.
- Data
Manage boolDatasources Whether the team can modify data sources.
- Data
Push boolTo Datafeeds Whether the team can publish to data feeds.
- Dhcp
Manage boolDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- Dhcp
View boolDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- Dns
Manage boolZones Whether the team can modify the accounts zones.
- Dns
Records List<TeamAllows Dns Records Allow Args> List of records that the team may access.
- Dns
Records List<TeamDenies Dns Records Deny Args> List of records that the team may not access.
- Dns
View boolZones Whether the team can view the accounts zones.
- Dns
Zones boolAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- Dns
Zones List<string>Allows List of zones that the team may access.
- Dns
Zones List<string>Denies List of zones that the team may not access.
- Ip
Whitelists List<TeamIp Whitelist Args> Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- Ipam
Manage boolIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- Ipam
View boolIpam Whether the team can view IPAM. Only relevant for the DDI product.
- Monitoring
Manage boolJobs Whether the team can modify monitoring jobs.
- Monitoring
Manage boolLists Whether the team can modify notification lists.
- Monitoring
View boolJobs Whether the team can view monitoring jobs.
- Name string
The free form name of the team.
- Security
Manage boolActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- Security
Manage boolGlobal2fa Whether the team can manage global two factor authentication.
- Account
Manage boolAccount Settings Whether the team can modify account settings.
- Account
Manage boolApikeys Whether the team can modify account apikeys.
- Account
Manage boolIp Whitelist Whether the team can manage ip whitelist.
- Account
Manage boolPayment Methods Whether the team can modify account payment methods.
- Account
Manage boolPlan No longer in use.
obsolete, should no longer be used
- Account
Manage boolTeams Whether the team can modify other teams in the account.
- Account
Manage boolUsers Whether the team can modify account users.
- Account
View boolActivity Log Whether the team can view activity logs.
- Account
View boolInvoices Whether the team can view invoices.
- Data
Manage boolDatafeeds Whether the team can modify data feeds.
- Data
Manage boolDatasources Whether the team can modify data sources.
- Data
Push boolTo Datafeeds Whether the team can publish to data feeds.
- Dhcp
Manage boolDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- Dhcp
View boolDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- Dns
Manage boolZones Whether the team can modify the accounts zones.
- Dns
Records []TeamAllows Dns Records Allow Args List of records that the team may access.
- Dns
Records []TeamDenies Dns Records Deny Args List of records that the team may not access.
- Dns
View boolZones Whether the team can view the accounts zones.
- Dns
Zones boolAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- Dns
Zones []stringAllows List of zones that the team may access.
- Dns
Zones []stringDenies List of zones that the team may not access.
- Ip
Whitelists []TeamIp Whitelist Args Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- Ipam
Manage boolIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- Ipam
View boolIpam Whether the team can view IPAM. Only relevant for the DDI product.
- Monitoring
Manage boolJobs Whether the team can modify monitoring jobs.
- Monitoring
Manage boolLists Whether the team can modify notification lists.
- Monitoring
View boolJobs Whether the team can view monitoring jobs.
- Name string
The free form name of the team.
- Security
Manage boolActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- Security
Manage boolGlobal2fa Whether the team can manage global two factor authentication.
- account
Manage BooleanAccount Settings Whether the team can modify account settings.
- account
Manage BooleanApikeys Whether the team can modify account apikeys.
- account
Manage BooleanIp Whitelist Whether the team can manage ip whitelist.
- account
Manage BooleanPayment Methods Whether the team can modify account payment methods.
- account
Manage BooleanPlan No longer in use.
obsolete, should no longer be used
- account
Manage BooleanTeams Whether the team can modify other teams in the account.
- account
Manage BooleanUsers Whether the team can modify account users.
- account
View BooleanActivity Log Whether the team can view activity logs.
- account
View BooleanInvoices Whether the team can view invoices.
- data
Manage BooleanDatafeeds Whether the team can modify data feeds.
- data
Manage BooleanDatasources Whether the team can modify data sources.
- data
Push BooleanTo Datafeeds Whether the team can publish to data feeds.
- dhcp
Manage BooleanDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp
View BooleanDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns
Manage BooleanZones Whether the team can modify the accounts zones.
- dns
Records List<TeamAllows Dns Records Allow Args> List of records that the team may access.
- dns
Records List<TeamDenies Dns Records Deny Args> List of records that the team may not access.
- dns
View BooleanZones Whether the team can view the accounts zones.
- dns
Zones BooleanAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns
Zones List<String>Allows List of zones that the team may access.
- dns
Zones List<String>Denies List of zones that the team may not access.
- ip
Whitelists List<TeamIp Whitelist Args> Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam
Manage BooleanIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam
View BooleanIpam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring
Manage BooleanJobs Whether the team can modify monitoring jobs.
- monitoring
Manage BooleanLists Whether the team can modify notification lists.
- monitoring
View BooleanJobs Whether the team can view monitoring jobs.
- name String
The free form name of the team.
- security
Manage BooleanActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security
Manage BooleanGlobal2fa Whether the team can manage global two factor authentication.
- account
Manage booleanAccount Settings Whether the team can modify account settings.
- account
Manage booleanApikeys Whether the team can modify account apikeys.
- account
Manage booleanIp Whitelist Whether the team can manage ip whitelist.
- account
Manage booleanPayment Methods Whether the team can modify account payment methods.
- account
Manage booleanPlan No longer in use.
obsolete, should no longer be used
- account
Manage booleanTeams Whether the team can modify other teams in the account.
- account
Manage booleanUsers Whether the team can modify account users.
- account
View booleanActivity Log Whether the team can view activity logs.
- account
View booleanInvoices Whether the team can view invoices.
- data
Manage booleanDatafeeds Whether the team can modify data feeds.
- data
Manage booleanDatasources Whether the team can modify data sources.
- data
Push booleanTo Datafeeds Whether the team can publish to data feeds.
- dhcp
Manage booleanDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp
View booleanDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns
Manage booleanZones Whether the team can modify the accounts zones.
- dns
Records TeamAllows Dns Records Allow Args[] List of records that the team may access.
- dns
Records TeamDenies Dns Records Deny Args[] List of records that the team may not access.
- dns
View booleanZones Whether the team can view the accounts zones.
- dns
Zones booleanAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns
Zones string[]Allows List of zones that the team may access.
- dns
Zones string[]Denies List of zones that the team may not access.
- ip
Whitelists TeamIp Whitelist Args[] Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam
Manage booleanIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam
View booleanIpam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring
Manage booleanJobs Whether the team can modify monitoring jobs.
- monitoring
Manage booleanLists Whether the team can modify notification lists.
- monitoring
View booleanJobs Whether the team can view monitoring jobs.
- name string
The free form name of the team.
- security
Manage booleanActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security
Manage booleanGlobal2fa Whether the team can manage global two factor authentication.
- account_
manage_ boolaccount_ settings Whether the team can modify account settings.
- account_
manage_ boolapikeys Whether the team can modify account apikeys.
- account_
manage_ boolip_ whitelist Whether the team can manage ip whitelist.
- account_
manage_ boolpayment_ methods Whether the team can modify account payment methods.
- account_
manage_ boolplan No longer in use.
obsolete, should no longer be used
- account_
manage_ boolteams Whether the team can modify other teams in the account.
- account_
manage_ boolusers Whether the team can modify account users.
- account_
view_ boolactivity_ log Whether the team can view activity logs.
- account_
view_ boolinvoices Whether the team can view invoices.
- data_
manage_ booldatafeeds Whether the team can modify data feeds.
- data_
manage_ booldatasources Whether the team can modify data sources.
- data_
push_ boolto_ datafeeds Whether the team can publish to data feeds.
- dhcp_
manage_ booldhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp_
view_ booldhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns_
manage_ boolzones Whether the team can modify the accounts zones.
- dns_
records_ Sequence[Teamallows Dns Records Allow Args] List of records that the team may access.
- dns_
records_ Sequence[Teamdenies Dns Records Deny Args] List of records that the team may not access.
- dns_
view_ boolzones Whether the team can view the accounts zones.
- dns_
zones_ boolallow_ by_ default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns_
zones_ Sequence[str]allows List of zones that the team may access.
- dns_
zones_ Sequence[str]denies List of zones that the team may not access.
- ip_
whitelists Sequence[TeamIp Whitelist Args] Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam_
manage_ boolipam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam_
view_ boolipam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring_
manage_ booljobs Whether the team can modify monitoring jobs.
- monitoring_
manage_ boollists Whether the team can modify notification lists.
- monitoring_
view_ booljobs Whether the team can view monitoring jobs.
- name str
The free form name of the team.
- security_
manage_ boolactive_ directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security_
manage_ boolglobal2fa Whether the team can manage global two factor authentication.
- account
Manage BooleanAccount Settings Whether the team can modify account settings.
- account
Manage BooleanApikeys Whether the team can modify account apikeys.
- account
Manage BooleanIp Whitelist Whether the team can manage ip whitelist.
- account
Manage BooleanPayment Methods Whether the team can modify account payment methods.
- account
Manage BooleanPlan No longer in use.
obsolete, should no longer be used
- account
Manage BooleanTeams Whether the team can modify other teams in the account.
- account
Manage BooleanUsers Whether the team can modify account users.
- account
View BooleanActivity Log Whether the team can view activity logs.
- account
View BooleanInvoices Whether the team can view invoices.
- data
Manage BooleanDatafeeds Whether the team can modify data feeds.
- data
Manage BooleanDatasources Whether the team can modify data sources.
- data
Push BooleanTo Datafeeds Whether the team can publish to data feeds.
- dhcp
Manage BooleanDhcp Whether the team can manage DHCP. Only relevant for the DDI product.
- dhcp
View BooleanDhcp Whether the team can view DHCP. Only relevant for the DDI product.
- dns
Manage BooleanZones Whether the team can modify the accounts zones.
- dns
Records List<Property Map>Allows List of records that the team may access.
- dns
Records List<Property Map>Denies List of records that the team may not access.
- dns
View BooleanZones Whether the team can view the accounts zones.
- dns
Zones BooleanAllow By Default If true, enable the
dns_zones_allow
list, otherwise enable thedns_zones_deny
list.- dns
Zones List<String>Allows List of zones that the team may access.
- dns
Zones List<String>Denies List of zones that the team may not access.
- ip
Whitelists List<Property Map> Array of IP addresses objects to chich to grant the team access. Each object includes a name (string), and values (array of strings) associated to each "allow" list.
- ipam
Manage BooleanIpam Whether the team can manage IPAM. Only relevant for the DDI product.
- ipam
View BooleanIpam Whether the team can view IPAM. Only relevant for the DDI product.
- monitoring
Manage BooleanJobs Whether the team can modify monitoring jobs.
- monitoring
Manage BooleanLists Whether the team can modify notification lists.
- monitoring
View BooleanJobs Whether the team can view monitoring jobs.
- name String
The free form name of the team.
- security
Manage BooleanActive Directory Whether the team can manage global active directory. Only relevant for the DDI product.
- security
Manage BooleanGlobal2fa Whether the team can manage global two factor authentication.
Supporting Types
TeamDnsRecordsAllow
- Domain string
- Include
Subdomains bool - Type string
- Zone string
- Domain string
- Include
Subdomains bool - Type string
- Zone string
- domain String
- include
Subdomains Boolean - type String
- zone String
- domain string
- include
Subdomains boolean - type string
- zone string
- domain str
- include_
subdomains bool - type str
- zone str
- domain String
- include
Subdomains Boolean - type String
- zone String
TeamDnsRecordsDeny
- Domain string
- Include
Subdomains bool - Type string
- Zone string
- Domain string
- Include
Subdomains bool - Type string
- Zone string
- domain String
- include
Subdomains Boolean - type String
- zone String
- domain string
- include
Subdomains boolean - type string
- zone string
- domain str
- include_
subdomains bool - type str
- zone str
- domain String
- include
Subdomains Boolean - type String
- zone String
TeamIpWhitelist
Import
$ pulumi import ns1:index/team:Team <name> <team_id>`
Package Details
- Repository
- NS1 pulumi/pulumi-ns1
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
ns1
Terraform Provider.