1. Packages
  2. Netlify Provider
  3. API Docs
  4. TeamFirewallTrafficRules
netlify 0.2.2 published on Friday, Mar 7, 2025 by netlify

netlify.TeamFirewallTrafficRules

Explore with Pulumi AI

netlify logo
netlify 0.2.2 published on Friday, Mar 7, 2025 by netlify

    Netlify team-level firewall traffic rules. Read more

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.netlify.TeamFirewallTrafficRules;
    import com.pulumi.netlify.TeamFirewallTrafficRulesArgs;
    import com.pulumi.netlify.inputs.TeamFirewallTrafficRulesPublishedArgs;
    import com.pulumi.netlify.inputs.TeamFirewallTrafficRulesUnpublishedArgs;
    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 team = new TeamFirewallTrafficRules("team", TeamFirewallTrafficRulesArgs.builder()
                .teamId(data.netlify_team().team().id())
                .published(TeamFirewallTrafficRulesPublishedArgs.builder()
                    .default_action("allow")
                    .ip_restrictions(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .geo_exceptions(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .unpublished(TeamFirewallTrafficRulesUnpublishedArgs.builder()
                    .default_action("deny")
                    .ip_exceptions(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .build())
                .build());
    
        }
    }
    
    resources:
      team:
        type: netlify:TeamFirewallTrafficRules
        properties:
          teamId: ${data.netlify_team.team.id}
          published:
            default_action: allow
            ip_restrictions:
              - description: bot network
                addresses:
                  - 192.0.2.0/24
                  - 198.51.100.0/24
            geo_exceptions:
              - description: brazil
                countries:
                  - BR
          unpublished:
            default_action: deny
            ip_exceptions:
              - description: Allow the VPN IP
                addresses:
                  - 203.0.113.65/32
    

    Create TeamFirewallTrafficRules Resource

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

    Constructor syntax

    new TeamFirewallTrafficRules(name: string, args: TeamFirewallTrafficRulesArgs, opts?: CustomResourceOptions);
    @overload
    def TeamFirewallTrafficRules(resource_name: str,
                                 args: TeamFirewallTrafficRulesArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def TeamFirewallTrafficRules(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 published: Optional[TeamFirewallTrafficRulesPublishedArgs] = None,
                                 unpublished: Optional[TeamFirewallTrafficRulesUnpublishedArgs] = None,
                                 team_id: Optional[str] = None)
    func NewTeamFirewallTrafficRules(ctx *Context, name string, args TeamFirewallTrafficRulesArgs, opts ...ResourceOption) (*TeamFirewallTrafficRules, error)
    public TeamFirewallTrafficRules(string name, TeamFirewallTrafficRulesArgs args, CustomResourceOptions? opts = null)
    public TeamFirewallTrafficRules(String name, TeamFirewallTrafficRulesArgs args)
    public TeamFirewallTrafficRules(String name, TeamFirewallTrafficRulesArgs args, CustomResourceOptions options)
    
    type: netlify:TeamFirewallTrafficRules
    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 TeamFirewallTrafficRulesArgs
    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 TeamFirewallTrafficRulesArgs
    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 TeamFirewallTrafficRulesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TeamFirewallTrafficRulesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TeamFirewallTrafficRulesArgs
    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 teamFirewallTrafficRulesResource = new Netlify.TeamFirewallTrafficRules("teamFirewallTrafficRulesResource", new()
    {
        Published = new Netlify.Inputs.TeamFirewallTrafficRulesPublishedArgs
        {
            DefaultAction = "string",
            GeoExceptions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesPublishedGeoExceptionArgs
                {
                    Countries = new[]
                    {
                        "string",
                    },
                    Description = "string",
                    Subregions = new[]
                    {
                        "string",
                    },
                },
            },
            GeoRestrictions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesPublishedGeoRestrictionArgs
                {
                    Countries = new[]
                    {
                        "string",
                    },
                    Description = "string",
                    Subregions = new[]
                    {
                        "string",
                    },
                },
            },
            IpExceptions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesPublishedIpExceptionArgs
                {
                    Addresses = new[]
                    {
                        "string",
                    },
                    Description = "string",
                },
            },
            IpRestrictions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesPublishedIpRestrictionArgs
                {
                    Addresses = new[]
                    {
                        "string",
                    },
                    Description = "string",
                },
            },
        },
        Unpublished = new Netlify.Inputs.TeamFirewallTrafficRulesUnpublishedArgs
        {
            DefaultAction = "string",
            GeoExceptions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesUnpublishedGeoExceptionArgs
                {
                    Countries = new[]
                    {
                        "string",
                    },
                    Description = "string",
                    Subregions = new[]
                    {
                        "string",
                    },
                },
            },
            GeoRestrictions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesUnpublishedGeoRestrictionArgs
                {
                    Countries = new[]
                    {
                        "string",
                    },
                    Description = "string",
                    Subregions = new[]
                    {
                        "string",
                    },
                },
            },
            IpExceptions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesUnpublishedIpExceptionArgs
                {
                    Addresses = new[]
                    {
                        "string",
                    },
                    Description = "string",
                },
            },
            IpRestrictions = new[]
            {
                new Netlify.Inputs.TeamFirewallTrafficRulesUnpublishedIpRestrictionArgs
                {
                    Addresses = new[]
                    {
                        "string",
                    },
                    Description = "string",
                },
            },
        },
        TeamId = "string",
    });
    
    example, err := netlify.NewTeamFirewallTrafficRules(ctx, "teamFirewallTrafficRulesResource", &netlify.TeamFirewallTrafficRulesArgs{
    Published: &.TeamFirewallTrafficRulesPublishedArgs{
    DefaultAction: pulumi.String("string"),
    GeoExceptions: .TeamFirewallTrafficRulesPublishedGeoExceptionArray{
    &.TeamFirewallTrafficRulesPublishedGeoExceptionArgs{
    Countries: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    Subregions: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    GeoRestrictions: .TeamFirewallTrafficRulesPublishedGeoRestrictionArray{
    &.TeamFirewallTrafficRulesPublishedGeoRestrictionArgs{
    Countries: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    Subregions: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    IpExceptions: .TeamFirewallTrafficRulesPublishedIpExceptionArray{
    &.TeamFirewallTrafficRulesPublishedIpExceptionArgs{
    Addresses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    },
    },
    IpRestrictions: .TeamFirewallTrafficRulesPublishedIpRestrictionArray{
    &.TeamFirewallTrafficRulesPublishedIpRestrictionArgs{
    Addresses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    },
    },
    },
    Unpublished: &.TeamFirewallTrafficRulesUnpublishedArgs{
    DefaultAction: pulumi.String("string"),
    GeoExceptions: .TeamFirewallTrafficRulesUnpublishedGeoExceptionArray{
    &.TeamFirewallTrafficRulesUnpublishedGeoExceptionArgs{
    Countries: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    Subregions: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    GeoRestrictions: .TeamFirewallTrafficRulesUnpublishedGeoRestrictionArray{
    &.TeamFirewallTrafficRulesUnpublishedGeoRestrictionArgs{
    Countries: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    Subregions: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    IpExceptions: .TeamFirewallTrafficRulesUnpublishedIpExceptionArray{
    &.TeamFirewallTrafficRulesUnpublishedIpExceptionArgs{
    Addresses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    },
    },
    IpRestrictions: .TeamFirewallTrafficRulesUnpublishedIpRestrictionArray{
    &.TeamFirewallTrafficRulesUnpublishedIpRestrictionArgs{
    Addresses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    },
    },
    },
    TeamId: pulumi.String("string"),
    })
    
    var teamFirewallTrafficRulesResource = new TeamFirewallTrafficRules("teamFirewallTrafficRulesResource", TeamFirewallTrafficRulesArgs.builder()
        .published(TeamFirewallTrafficRulesPublishedArgs.builder()
            .defaultAction("string")
            .geoExceptions(TeamFirewallTrafficRulesPublishedGeoExceptionArgs.builder()
                .countries("string")
                .description("string")
                .subregions("string")
                .build())
            .geoRestrictions(TeamFirewallTrafficRulesPublishedGeoRestrictionArgs.builder()
                .countries("string")
                .description("string")
                .subregions("string")
                .build())
            .ipExceptions(TeamFirewallTrafficRulesPublishedIpExceptionArgs.builder()
                .addresses("string")
                .description("string")
                .build())
            .ipRestrictions(TeamFirewallTrafficRulesPublishedIpRestrictionArgs.builder()
                .addresses("string")
                .description("string")
                .build())
            .build())
        .unpublished(TeamFirewallTrafficRulesUnpublishedArgs.builder()
            .defaultAction("string")
            .geoExceptions(TeamFirewallTrafficRulesUnpublishedGeoExceptionArgs.builder()
                .countries("string")
                .description("string")
                .subregions("string")
                .build())
            .geoRestrictions(TeamFirewallTrafficRulesUnpublishedGeoRestrictionArgs.builder()
                .countries("string")
                .description("string")
                .subregions("string")
                .build())
            .ipExceptions(TeamFirewallTrafficRulesUnpublishedIpExceptionArgs.builder()
                .addresses("string")
                .description("string")
                .build())
            .ipRestrictions(TeamFirewallTrafficRulesUnpublishedIpRestrictionArgs.builder()
                .addresses("string")
                .description("string")
                .build())
            .build())
        .teamId("string")
        .build());
    
    team_firewall_traffic_rules_resource = netlify.TeamFirewallTrafficRules("teamFirewallTrafficRulesResource",
        published={
            "default_action": "string",
            "geo_exceptions": [{
                "countries": ["string"],
                "description": "string",
                "subregions": ["string"],
            }],
            "geo_restrictions": [{
                "countries": ["string"],
                "description": "string",
                "subregions": ["string"],
            }],
            "ip_exceptions": [{
                "addresses": ["string"],
                "description": "string",
            }],
            "ip_restrictions": [{
                "addresses": ["string"],
                "description": "string",
            }],
        },
        unpublished={
            "default_action": "string",
            "geo_exceptions": [{
                "countries": ["string"],
                "description": "string",
                "subregions": ["string"],
            }],
            "geo_restrictions": [{
                "countries": ["string"],
                "description": "string",
                "subregions": ["string"],
            }],
            "ip_exceptions": [{
                "addresses": ["string"],
                "description": "string",
            }],
            "ip_restrictions": [{
                "addresses": ["string"],
                "description": "string",
            }],
        },
        team_id="string")
    
    const teamFirewallTrafficRulesResource = new netlify.TeamFirewallTrafficRules("teamFirewallTrafficRulesResource", {
        published: {
            defaultAction: "string",
            geoExceptions: [{
                countries: ["string"],
                description: "string",
                subregions: ["string"],
            }],
            geoRestrictions: [{
                countries: ["string"],
                description: "string",
                subregions: ["string"],
            }],
            ipExceptions: [{
                addresses: ["string"],
                description: "string",
            }],
            ipRestrictions: [{
                addresses: ["string"],
                description: "string",
            }],
        },
        unpublished: {
            defaultAction: "string",
            geoExceptions: [{
                countries: ["string"],
                description: "string",
                subregions: ["string"],
            }],
            geoRestrictions: [{
                countries: ["string"],
                description: "string",
                subregions: ["string"],
            }],
            ipExceptions: [{
                addresses: ["string"],
                description: "string",
            }],
            ipRestrictions: [{
                addresses: ["string"],
                description: "string",
            }],
        },
        teamId: "string",
    });
    
    type: netlify:TeamFirewallTrafficRules
    properties:
        published:
            defaultAction: string
            geoExceptions:
                - countries:
                    - string
                  description: string
                  subregions:
                    - string
            geoRestrictions:
                - countries:
                    - string
                  description: string
                  subregions:
                    - string
            ipExceptions:
                - addresses:
                    - string
                  description: string
            ipRestrictions:
                - addresses:
                    - string
                  description: string
        teamId: string
        unpublished:
            defaultAction: string
            geoExceptions:
                - countries:
                    - string
                  description: string
                  subregions:
                    - string
            geoRestrictions:
                - countries:
                    - string
                  description: string
                  subregions:
                    - string
            ipExceptions:
                - addresses:
                    - string
                  description: string
            ipRestrictions:
                - addresses:
                    - string
                  description: string
    

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

    Published TeamFirewallTrafficRulesPublished
    Unpublished TeamFirewallTrafficRulesUnpublished
    TeamId string
    Required if a default team was not configured in the provider configuration.
    Published TeamFirewallTrafficRulesPublishedArgs
    Unpublished TeamFirewallTrafficRulesUnpublishedArgs
    TeamId string
    Required if a default team was not configured in the provider configuration.
    published TeamFirewallTrafficRulesPublished
    unpublished TeamFirewallTrafficRulesUnpublished
    teamId String
    Required if a default team was not configured in the provider configuration.
    published TeamFirewallTrafficRulesPublished
    unpublished TeamFirewallTrafficRulesUnpublished
    teamId string
    Required if a default team was not configured in the provider configuration.
    published TeamFirewallTrafficRulesPublishedArgs
    unpublished TeamFirewallTrafficRulesUnpublishedArgs
    team_id str
    Required if a default team was not configured in the provider configuration.
    published Property Map
    unpublished Property Map
    teamId String
    Required if a default team was not configured in the provider configuration.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdated string
    SiteId string
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdated string
    SiteId string
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdated String
    siteId String
    id string
    The provider-assigned unique ID for this managed resource.
    lastUpdated string
    siteId string
    id str
    The provider-assigned unique ID for this managed resource.
    last_updated str
    site_id str
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdated String
    siteId String

    Look up Existing TeamFirewallTrafficRules Resource

    Get an existing TeamFirewallTrafficRules 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?: TeamFirewallTrafficRulesState, opts?: CustomResourceOptions): TeamFirewallTrafficRules
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            last_updated: Optional[str] = None,
            published: Optional[TeamFirewallTrafficRulesPublishedArgs] = None,
            site_id: Optional[str] = None,
            team_id: Optional[str] = None,
            unpublished: Optional[TeamFirewallTrafficRulesUnpublishedArgs] = None) -> TeamFirewallTrafficRules
    func GetTeamFirewallTrafficRules(ctx *Context, name string, id IDInput, state *TeamFirewallTrafficRulesState, opts ...ResourceOption) (*TeamFirewallTrafficRules, error)
    public static TeamFirewallTrafficRules Get(string name, Input<string> id, TeamFirewallTrafficRulesState? state, CustomResourceOptions? opts = null)
    public static TeamFirewallTrafficRules get(String name, Output<String> id, TeamFirewallTrafficRulesState state, CustomResourceOptions options)
    resources:  _:    type: netlify:TeamFirewallTrafficRules    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:
    LastUpdated string
    Published TeamFirewallTrafficRulesPublished
    SiteId string
    TeamId string
    Required if a default team was not configured in the provider configuration.
    Unpublished TeamFirewallTrafficRulesUnpublished
    LastUpdated string
    Published TeamFirewallTrafficRulesPublishedArgs
    SiteId string
    TeamId string
    Required if a default team was not configured in the provider configuration.
    Unpublished TeamFirewallTrafficRulesUnpublishedArgs
    lastUpdated String
    published TeamFirewallTrafficRulesPublished
    siteId String
    teamId String
    Required if a default team was not configured in the provider configuration.
    unpublished TeamFirewallTrafficRulesUnpublished
    lastUpdated string
    published TeamFirewallTrafficRulesPublished
    siteId string
    teamId string
    Required if a default team was not configured in the provider configuration.
    unpublished TeamFirewallTrafficRulesUnpublished
    last_updated str
    published TeamFirewallTrafficRulesPublishedArgs
    site_id str
    team_id str
    Required if a default team was not configured in the provider configuration.
    unpublished TeamFirewallTrafficRulesUnpublishedArgs
    lastUpdated String
    published Property Map
    siteId String
    teamId String
    Required if a default team was not configured in the provider configuration.
    unpublished Property Map

    Supporting Types

    TeamFirewallTrafficRulesPublished, TeamFirewallTrafficRulesPublishedArgs

    TeamFirewallTrafficRulesPublishedGeoException, TeamFirewallTrafficRulesPublishedGeoExceptionArgs

    Countries List<string>
    Description string
    Subregions List<string>
    Countries []string
    Description string
    Subregions []string
    countries List<String>
    description String
    subregions List<String>
    countries string[]
    description string
    subregions string[]
    countries Sequence[str]
    description str
    subregions Sequence[str]
    countries List<String>
    description String
    subregions List<String>

    TeamFirewallTrafficRulesPublishedGeoRestriction, TeamFirewallTrafficRulesPublishedGeoRestrictionArgs

    Countries List<string>
    Description string
    Subregions List<string>
    Countries []string
    Description string
    Subregions []string
    countries List<String>
    description String
    subregions List<String>
    countries string[]
    description string
    subregions string[]
    countries Sequence[str]
    description str
    subregions Sequence[str]
    countries List<String>
    description String
    subregions List<String>

    TeamFirewallTrafficRulesPublishedIpException, TeamFirewallTrafficRulesPublishedIpExceptionArgs

    Addresses List<string>
    Description string
    Addresses []string
    Description string
    addresses List<String>
    description String
    addresses string[]
    description string
    addresses Sequence[str]
    description str
    addresses List<String>
    description String

    TeamFirewallTrafficRulesPublishedIpRestriction, TeamFirewallTrafficRulesPublishedIpRestrictionArgs

    Addresses List<string>
    Description string
    Addresses []string
    Description string
    addresses List<String>
    description String
    addresses string[]
    description string
    addresses Sequence[str]
    description str
    addresses List<String>
    description String

    TeamFirewallTrafficRulesUnpublished, TeamFirewallTrafficRulesUnpublishedArgs

    TeamFirewallTrafficRulesUnpublishedGeoException, TeamFirewallTrafficRulesUnpublishedGeoExceptionArgs

    Countries List<string>
    Description string
    Subregions List<string>
    Countries []string
    Description string
    Subregions []string
    countries List<String>
    description String
    subregions List<String>
    countries string[]
    description string
    subregions string[]
    countries Sequence[str]
    description str
    subregions Sequence[str]
    countries List<String>
    description String
    subregions List<String>

    TeamFirewallTrafficRulesUnpublishedGeoRestriction, TeamFirewallTrafficRulesUnpublishedGeoRestrictionArgs

    Countries List<string>
    Description string
    Subregions List<string>
    Countries []string
    Description string
    Subregions []string
    countries List<String>
    description String
    subregions List<String>
    countries string[]
    description string
    subregions string[]
    countries Sequence[str]
    description str
    subregions Sequence[str]
    countries List<String>
    description String
    subregions List<String>

    TeamFirewallTrafficRulesUnpublishedIpException, TeamFirewallTrafficRulesUnpublishedIpExceptionArgs

    Addresses List<string>
    Description string
    Addresses []string
    Description string
    addresses List<String>
    description String
    addresses string[]
    description string
    addresses Sequence[str]
    description str
    addresses List<String>
    description String

    TeamFirewallTrafficRulesUnpublishedIpRestriction, TeamFirewallTrafficRulesUnpublishedIpRestrictionArgs

    Addresses List<string>
    Description string
    Addresses []string
    Description string
    addresses List<String>
    description String
    addresses string[]
    description string
    addresses Sequence[str]
    description str
    addresses List<String>
    description String

    Import

    Import a team’s firewall traffic rules by the team ID

    $ pulumi import netlify:index/teamFirewallTrafficRules:TeamFirewallTrafficRules team 6600abcdef1234567890abcd
    

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

    Package Details

    Repository
    netlify netlify/terraform-provider-netlify
    License
    Notes
    This Pulumi package is based on the netlify Terraform Provider.
    netlify logo
    netlify 0.2.2 published on Friday, Mar 7, 2025 by netlify