1. Packages
  2. Outscale Provider
  3. API Docs
  4. getSecurityGroups
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getSecurityGroups

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about security groups.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const securityGroups01 = outscale.getSecurityGroups({
        filters: [
            {
                name: "net_ids",
                values: [
                    "sg-12345678",
                    "sg-87654321",
                ],
            },
            {
                name: "inbound_rule_ip_ranges",
                values: ["111.11.111.1/32"],
            },
        ],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    security_groups01 = outscale.get_security_groups(filters=[
        {
            "name": "net_ids",
            "values": [
                "sg-12345678",
                "sg-87654321",
            ],
        },
        {
            "name": "inbound_rule_ip_ranges",
            "values": ["111.11.111.1/32"],
        },
    ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.GetSecurityGroups(ctx, &outscale.GetSecurityGroupsArgs{
    			Filters: []outscale.GetSecurityGroupsFilter{
    				{
    					Name: "net_ids",
    					Values: []string{
    						"sg-12345678",
    						"sg-87654321",
    					},
    				},
    				{
    					Name: "inbound_rule_ip_ranges",
    					Values: []string{
    						"111.11.111.1/32",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var securityGroups01 = Outscale.GetSecurityGroups.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetSecurityGroupsFilterInputArgs
                {
                    Name = "net_ids",
                    Values = new[]
                    {
                        "sg-12345678",
                        "sg-87654321",
                    },
                },
                new Outscale.Inputs.GetSecurityGroupsFilterInputArgs
                {
                    Name = "inbound_rule_ip_ranges",
                    Values = new[]
                    {
                        "111.11.111.1/32",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetSecurityGroupsArgs;
    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) {
            final var securityGroups01 = OutscaleFunctions.getSecurityGroups(GetSecurityGroupsArgs.builder()
                .filters(            
                    GetSecurityGroupsFilterArgs.builder()
                        .name("net_ids")
                        .values(                    
                            "sg-12345678",
                            "sg-87654321")
                        .build(),
                    GetSecurityGroupsFilterArgs.builder()
                        .name("inbound_rule_ip_ranges")
                        .values("111.11.111.1/32")
                        .build())
                .build());
    
        }
    }
    
    variables:
      securityGroups01:
        fn::invoke:
          function: outscale:getSecurityGroups
          arguments:
            filters:
              - name: net_ids
                values:
                  - sg-12345678
                  - sg-87654321
              - name: inbound_rule_ip_ranges
                values:
                  - 111.11.111.1/32
    

    Using getSecurityGroups

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSecurityGroups(args: GetSecurityGroupsArgs, opts?: InvokeOptions): Promise<GetSecurityGroupsResult>
    function getSecurityGroupsOutput(args: GetSecurityGroupsOutputArgs, opts?: InvokeOptions): Output<GetSecurityGroupsResult>
    def get_security_groups(filters: Optional[Sequence[GetSecurityGroupsFilter]] = None,
                            id: Optional[str] = None,
                            security_group_ids: Optional[Sequence[str]] = None,
                            security_group_names: Optional[Sequence[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> GetSecurityGroupsResult
    def get_security_groups_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSecurityGroupsFilterArgs]]]] = None,
                            id: Optional[pulumi.Input[str]] = None,
                            security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            security_group_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetSecurityGroupsResult]
    func GetSecurityGroups(ctx *Context, args *GetSecurityGroupsArgs, opts ...InvokeOption) (*GetSecurityGroupsResult, error)
    func GetSecurityGroupsOutput(ctx *Context, args *GetSecurityGroupsOutputArgs, opts ...InvokeOption) GetSecurityGroupsResultOutput

    > Note: This function is named GetSecurityGroups in the Go SDK.

    public static class GetSecurityGroups 
    {
        public static Task<GetSecurityGroupsResult> InvokeAsync(GetSecurityGroupsArgs args, InvokeOptions? opts = null)
        public static Output<GetSecurityGroupsResult> Invoke(GetSecurityGroupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSecurityGroupsResult> getSecurityGroups(GetSecurityGroupsArgs args, InvokeOptions options)
    public static Output<GetSecurityGroupsResult> getSecurityGroups(GetSecurityGroupsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getSecurityGroups:getSecurityGroups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetSecurityGroupsFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    SecurityGroupIds List<string>
    SecurityGroupNames List<string>
    Filters []GetSecurityGroupsFilter
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    SecurityGroupIds []string
    SecurityGroupNames []string
    filters List<GetSecurityGroupsFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    securityGroupIds List<String>
    securityGroupNames List<String>
    filters GetSecurityGroupsFilter[]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id string
    securityGroupIds string[]
    securityGroupNames string[]
    filters Sequence[GetSecurityGroupsFilter]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id str
    security_group_ids Sequence[str]
    security_group_names Sequence[str]
    filters List<Property Map>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    securityGroupIds List<String>
    securityGroupNames List<String>

    getSecurityGroups Result

    The following output properties are available:

    Id string
    RequestId string
    SecurityGroups List<GetSecurityGroupsSecurityGroup>
    Information about one or more security groups.
    Filters List<GetSecurityGroupsFilter>
    SecurityGroupIds List<string>
    SecurityGroupNames List<string>
    id String
    requestId String
    securityGroups List<GetSecurityGroupsSecurityGroup>
    Information about one or more security groups.
    filters List<GetSecurityGroupsFilter>
    securityGroupIds List<String>
    securityGroupNames List<String>
    id String
    requestId String
    securityGroups List<Property Map>
    Information about one or more security groups.
    filters List<Property Map>
    securityGroupIds List<String>
    securityGroupNames List<String>

    Supporting Types

    GetSecurityGroupsFilter

    Name string
    Values List<string>
    Name string
    Values []string
    name String
    values List<String>
    name string
    values string[]
    name str
    values Sequence[str]
    name String
    values List<String>

    GetSecurityGroupsSecurityGroup

    AccountId string
    The account ID that owns the source or destination security group.
    Description string
    The description of the security group.
    InboundRules List<GetSecurityGroupsSecurityGroupInboundRule>
    The inbound rules associated with the security group.
    NetId string
    The ID of the Net for the security group.
    OutboundRules List<GetSecurityGroupsSecurityGroupOutboundRule>
    The outbound rules associated with the security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    Tags List<GetSecurityGroupsSecurityGroupTag>
    One or more tags associated with the security group.
    AccountId string
    The account ID that owns the source or destination security group.
    Description string
    The description of the security group.
    InboundRules []GetSecurityGroupsSecurityGroupInboundRule
    The inbound rules associated with the security group.
    NetId string
    The ID of the Net for the security group.
    OutboundRules []GetSecurityGroupsSecurityGroupOutboundRule
    The outbound rules associated with the security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    Tags []GetSecurityGroupsSecurityGroupTag
    One or more tags associated with the security group.
    accountId String
    The account ID that owns the source or destination security group.
    description String
    The description of the security group.
    inboundRules List<GetSecurityGroupsSecurityGroupInboundRule>
    The inbound rules associated with the security group.
    netId String
    The ID of the Net for the security group.
    outboundRules List<GetSecurityGroupsSecurityGroupOutboundRule>
    The outbound rules associated with the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.
    tags List<GetSecurityGroupsSecurityGroupTag>
    One or more tags associated with the security group.
    accountId string
    The account ID that owns the source or destination security group.
    description string
    The description of the security group.
    inboundRules GetSecurityGroupsSecurityGroupInboundRule[]
    The inbound rules associated with the security group.
    netId string
    The ID of the Net for the security group.
    outboundRules GetSecurityGroupsSecurityGroupOutboundRule[]
    The outbound rules associated with the security group.
    securityGroupId string
    The ID of the security group.
    securityGroupName string
    The name of the security group.
    tags GetSecurityGroupsSecurityGroupTag[]
    One or more tags associated with the security group.
    account_id str
    The account ID that owns the source or destination security group.
    description str
    The description of the security group.
    inbound_rules Sequence[GetSecurityGroupsSecurityGroupInboundRule]
    The inbound rules associated with the security group.
    net_id str
    The ID of the Net for the security group.
    outbound_rules Sequence[GetSecurityGroupsSecurityGroupOutboundRule]
    The outbound rules associated with the security group.
    security_group_id str
    The ID of the security group.
    security_group_name str
    The name of the security group.
    tags Sequence[GetSecurityGroupsSecurityGroupTag]
    One or more tags associated with the security group.
    accountId String
    The account ID that owns the source or destination security group.
    description String
    The description of the security group.
    inboundRules List<Property Map>
    The inbound rules associated with the security group.
    netId String
    The ID of the Net for the security group.
    outboundRules List<Property Map>
    The outbound rules associated with the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.
    tags List<Property Map>
    One or more tags associated with the security group.

    GetSecurityGroupsSecurityGroupInboundRule

    FromPortRange double
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    IpProtocol string
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    IpRanges List<string>
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    PrefixListIds List<string>
    SecurityGroupsMembers List<GetSecurityGroupsSecurityGroupInboundRuleSecurityGroupsMember>
    Information about one or more source or destination security groups.
    ToPortRange double
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    FromPortRange float64
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    IpProtocol string
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    IpRanges []string
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    PrefixListIds []string
    SecurityGroupsMembers []GetSecurityGroupsSecurityGroupInboundRuleSecurityGroupsMember
    Information about one or more source or destination security groups.
    ToPortRange float64
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    fromPortRange Double
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ipProtocol String
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ipRanges List<String>
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefixListIds List<String>
    securityGroupsMembers List<GetSecurityGroupsSecurityGroupInboundRuleSecurityGroupsMember>
    Information about one or more source or destination security groups.
    toPortRange Double
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    fromPortRange number
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ipProtocol string
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ipRanges string[]
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefixListIds string[]
    securityGroupsMembers GetSecurityGroupsSecurityGroupInboundRuleSecurityGroupsMember[]
    Information about one or more source or destination security groups.
    toPortRange number
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    from_port_range float
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ip_protocol str
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ip_ranges Sequence[str]
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefix_list_ids Sequence[str]
    security_groups_members Sequence[GetSecurityGroupsSecurityGroupInboundRuleSecurityGroupsMember]
    Information about one or more source or destination security groups.
    to_port_range float
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    fromPortRange Number
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ipProtocol String
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ipRanges List<String>
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefixListIds List<String>
    securityGroupsMembers List<Property Map>
    Information about one or more source or destination security groups.
    toPortRange Number
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.

    GetSecurityGroupsSecurityGroupInboundRuleSecurityGroupsMember

    AccountId string
    The account ID that owns the source or destination security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    AccountId string
    The account ID that owns the source or destination security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    accountId String
    The account ID that owns the source or destination security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.
    accountId string
    The account ID that owns the source or destination security group.
    securityGroupId string
    The ID of the security group.
    securityGroupName string
    The name of the security group.
    account_id str
    The account ID that owns the source or destination security group.
    security_group_id str
    The ID of the security group.
    security_group_name str
    The name of the security group.
    accountId String
    The account ID that owns the source or destination security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.

    GetSecurityGroupsSecurityGroupOutboundRule

    FromPortRange double
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    IpProtocol string
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    IpRanges List<string>
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    PrefixListIds List<string>
    SecurityGroupsMembers List<GetSecurityGroupsSecurityGroupOutboundRuleSecurityGroupsMember>
    Information about one or more source or destination security groups.
    ToPortRange double
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    FromPortRange float64
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    IpProtocol string
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    IpRanges []string
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    PrefixListIds []string
    SecurityGroupsMembers []GetSecurityGroupsSecurityGroupOutboundRuleSecurityGroupsMember
    Information about one or more source or destination security groups.
    ToPortRange float64
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    fromPortRange Double
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ipProtocol String
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ipRanges List<String>
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefixListIds List<String>
    securityGroupsMembers List<GetSecurityGroupsSecurityGroupOutboundRuleSecurityGroupsMember>
    Information about one or more source or destination security groups.
    toPortRange Double
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    fromPortRange number
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ipProtocol string
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ipRanges string[]
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefixListIds string[]
    securityGroupsMembers GetSecurityGroupsSecurityGroupOutboundRuleSecurityGroupsMember[]
    Information about one or more source or destination security groups.
    toPortRange number
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    from_port_range float
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ip_protocol str
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ip_ranges Sequence[str]
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefix_list_ids Sequence[str]
    security_groups_members Sequence[GetSecurityGroupsSecurityGroupOutboundRuleSecurityGroupsMember]
    Information about one or more source or destination security groups.
    to_port_range float
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.
    fromPortRange Number
    The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
    ipProtocol String
    The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a Net, this can also be an IP protocol number. For more information, see the IANA.org website.
    ipRanges List<String>
    One or more IP ranges for the security group rules, in CIDR notation (for example, 10.0.0.0/16).
    prefixListIds List<String>
    securityGroupsMembers List<Property Map>
    Information about one or more source or destination security groups.
    toPortRange Number
    The end of the port range for the TCP and UDP protocols, or an ICMP code number.

    GetSecurityGroupsSecurityGroupOutboundRuleSecurityGroupsMember

    AccountId string
    The account ID that owns the source or destination security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    AccountId string
    The account ID that owns the source or destination security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    accountId String
    The account ID that owns the source or destination security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.
    accountId string
    The account ID that owns the source or destination security group.
    securityGroupId string
    The ID of the security group.
    securityGroupName string
    The name of the security group.
    account_id str
    The account ID that owns the source or destination security group.
    security_group_id str
    The ID of the security group.
    security_group_name str
    The name of the security group.
    accountId String
    The account ID that owns the source or destination security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.

    GetSecurityGroupsSecurityGroupTag

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale