Vultr v2.21.1 published on Monday, Jul 22, 2024 by dirien
vultr.getFirewallGroup
Explore with Pulumi AI
Get information about a firewall group on your Vultr account.
Example Usage
Get the information for a firewall group by description
:
import * as pulumi from "@pulumi/pulumi";
import * as vultr from "@pulumi/vultr";
const myFwg = vultr.getFirewallGroup({
filters: [{
name: "description",
values: ["fwg-description"],
}],
});
import pulumi
import pulumi_vultr as vultr
my_fwg = vultr.get_firewall_group(filters=[vultr.GetFirewallGroupFilterArgs(
name="description",
values=["fwg-description"],
)])
package main
import (
"github.com/dirien/pulumi-vultr/sdk/v2/go/vultr"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vultr.LookupFirewallGroup(ctx, &vultr.LookupFirewallGroupArgs{
Filters: []vultr.GetFirewallGroupFilter{
{
Name: "description",
Values: []string{
"fwg-description",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vultr = Pulumi.Vultr;
return await Deployment.RunAsync(() =>
{
var myFwg = Vultr.GetFirewallGroup.Invoke(new()
{
Filters = new[]
{
new Vultr.Inputs.GetFirewallGroupFilterInputArgs
{
Name = "description",
Values = new[]
{
"fwg-description",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vultr.VultrFunctions;
import com.pulumi.vultr.inputs.GetFirewallGroupArgs;
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 myFwg = VultrFunctions.getFirewallGroup(GetFirewallGroupArgs.builder()
.filters(GetFirewallGroupFilterArgs.builder()
.name("description")
.values("fwg-description")
.build())
.build());
}
}
variables:
myFwg:
fn::invoke:
Function: vultr:getFirewallGroup
Arguments:
filters:
- name: description
values:
- fwg-description
Using getFirewallGroup
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 getFirewallGroup(args: GetFirewallGroupArgs, opts?: InvokeOptions): Promise<GetFirewallGroupResult>
function getFirewallGroupOutput(args: GetFirewallGroupOutputArgs, opts?: InvokeOptions): Output<GetFirewallGroupResult>
def get_firewall_group(filters: Optional[Sequence[GetFirewallGroupFilter]] = None,
opts: Optional[InvokeOptions] = None) -> GetFirewallGroupResult
def get_firewall_group_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFirewallGroupFilterArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFirewallGroupResult]
func LookupFirewallGroup(ctx *Context, args *LookupFirewallGroupArgs, opts ...InvokeOption) (*LookupFirewallGroupResult, error)
func LookupFirewallGroupOutput(ctx *Context, args *LookupFirewallGroupOutputArgs, opts ...InvokeOption) LookupFirewallGroupResultOutput
> Note: This function is named LookupFirewallGroup
in the Go SDK.
public static class GetFirewallGroup
{
public static Task<GetFirewallGroupResult> InvokeAsync(GetFirewallGroupArgs args, InvokeOptions? opts = null)
public static Output<GetFirewallGroupResult> Invoke(GetFirewallGroupInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFirewallGroupResult> getFirewallGroup(GetFirewallGroupArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: vultr:index/getFirewallGroup:getFirewallGroup
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<ediri.
Vultr. Inputs. Get Firewall Group Filter> - Query parameters for finding firewall groups.
- Filters
[]Get
Firewall Group Filter - Query parameters for finding firewall groups.
- filters
List<Get
Firewall Group Filter> - Query parameters for finding firewall groups.
- filters
Get
Firewall Group Filter[] - Query parameters for finding firewall groups.
- filters
Sequence[Get
Firewall Group Filter] - Query parameters for finding firewall groups.
- filters List<Property Map>
- Query parameters for finding firewall groups.
getFirewallGroup Result
The following output properties are available:
- Date
Created string - The date the firewall group was added to your Vultr account.
- Date
Modified string - The date the firewall group was last modified.
- Description string
- The description of the firewall group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Count int - The number of instances this firewall group is applied to.
- Max
Rule intCount - The maximum number of rules this firewall group can have.
- Rule
Count int - The number of rules added to this firewall group.
- Filters
List<ediri.
Vultr. Outputs. Get Firewall Group Filter>
- Date
Created string - The date the firewall group was added to your Vultr account.
- Date
Modified string - The date the firewall group was last modified.
- Description string
- The description of the firewall group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Count int - The number of instances this firewall group is applied to.
- Max
Rule intCount - The maximum number of rules this firewall group can have.
- Rule
Count int - The number of rules added to this firewall group.
- Filters
[]Get
Firewall Group Filter
- date
Created String - The date the firewall group was added to your Vultr account.
- date
Modified String - The date the firewall group was last modified.
- description String
- The description of the firewall group.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Count Integer - The number of instances this firewall group is applied to.
- max
Rule IntegerCount - The maximum number of rules this firewall group can have.
- rule
Count Integer - The number of rules added to this firewall group.
- filters
List<Get
Firewall Group Filter>
- date
Created string - The date the firewall group was added to your Vultr account.
- date
Modified string - The date the firewall group was last modified.
- description string
- The description of the firewall group.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Count number - The number of instances this firewall group is applied to.
- max
Rule numberCount - The maximum number of rules this firewall group can have.
- rule
Count number - The number of rules added to this firewall group.
- filters
Get
Firewall Group Filter[]
- date_
created str - The date the firewall group was added to your Vultr account.
- date_
modified str - The date the firewall group was last modified.
- description str
- The description of the firewall group.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
count int - The number of instances this firewall group is applied to.
- max_
rule_ intcount - The maximum number of rules this firewall group can have.
- rule_
count int - The number of rules added to this firewall group.
- filters
Sequence[Get
Firewall Group Filter]
- date
Created String - The date the firewall group was added to your Vultr account.
- date
Modified String - The date the firewall group was last modified.
- description String
- The description of the firewall group.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Count Number - The number of instances this firewall group is applied to.
- max
Rule NumberCount - The maximum number of rules this firewall group can have.
- rule
Count Number - The number of rules added to this firewall group.
- filters List<Property Map>
Supporting Types
GetFirewallGroupFilter
Package Details
- Repository
- vultr dirien/pulumi-vultr
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vultr
Terraform Provider.