azure-native.network.ApplicationSecurityGroup
Explore with Pulumi AI
An application security group in a resource group. API Version: 2020-11-01.
Example Usage
Create application security group
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var applicationSecurityGroup = new AzureNative.Network.ApplicationSecurityGroup("applicationSecurityGroup", new()
{
ApplicationSecurityGroupName = "test-asg",
Location = "westus",
ResourceGroupName = "rg1",
});
});
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewApplicationSecurityGroup(ctx, "applicationSecurityGroup", &network.ApplicationSecurityGroupArgs{
ApplicationSecurityGroupName: pulumi.String("test-asg"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("rg1"),
})
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.azurenative.network.ApplicationSecurityGroup;
import com.pulumi.azurenative.network.ApplicationSecurityGroupArgs;
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 applicationSecurityGroup = new ApplicationSecurityGroup("applicationSecurityGroup", ApplicationSecurityGroupArgs.builder()
.applicationSecurityGroupName("test-asg")
.location("westus")
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
application_security_group = azure_native.network.ApplicationSecurityGroup("applicationSecurityGroup",
application_security_group_name="test-asg",
location="westus",
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const applicationSecurityGroup = new azure_native.network.ApplicationSecurityGroup("applicationSecurityGroup", {
applicationSecurityGroupName: "test-asg",
location: "westus",
resourceGroupName: "rg1",
});
resources:
applicationSecurityGroup:
type: azure-native:network:ApplicationSecurityGroup
properties:
applicationSecurityGroupName: test-asg
location: westus
resourceGroupName: rg1
Create ApplicationSecurityGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApplicationSecurityGroup(name: string, args: ApplicationSecurityGroupArgs, opts?: CustomResourceOptions);
@overload
def ApplicationSecurityGroup(resource_name: str,
args: ApplicationSecurityGroupInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ApplicationSecurityGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
application_security_group_name: Optional[str] = None,
id: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewApplicationSecurityGroup(ctx *Context, name string, args ApplicationSecurityGroupArgs, opts ...ResourceOption) (*ApplicationSecurityGroup, error)
public ApplicationSecurityGroup(string name, ApplicationSecurityGroupArgs args, CustomResourceOptions? opts = null)
public ApplicationSecurityGroup(String name, ApplicationSecurityGroupArgs args)
public ApplicationSecurityGroup(String name, ApplicationSecurityGroupArgs args, CustomResourceOptions options)
type: azure-native:network:ApplicationSecurityGroup
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 ApplicationSecurityGroupArgs
- 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 ApplicationSecurityGroupInitArgs
- 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 ApplicationSecurityGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationSecurityGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationSecurityGroupArgs
- 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 applicationSecurityGroupResource = new AzureNative.Network.ApplicationSecurityGroup("applicationSecurityGroupResource", new()
{
ResourceGroupName = "string",
ApplicationSecurityGroupName = "string",
Id = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := network.NewApplicationSecurityGroup(ctx, "applicationSecurityGroupResource", &network.ApplicationSecurityGroupArgs{
ResourceGroupName: "string",
ApplicationSecurityGroupName: "string",
Id: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var applicationSecurityGroupResource = new ApplicationSecurityGroup("applicationSecurityGroupResource", ApplicationSecurityGroupArgs.builder()
.resourceGroupName("string")
.applicationSecurityGroupName("string")
.id("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
application_security_group_resource = azure_native.network.ApplicationSecurityGroup("applicationSecurityGroupResource",
resource_group_name=string,
application_security_group_name=string,
id=string,
location=string,
tags={
string: string,
})
const applicationSecurityGroupResource = new azure_native.network.ApplicationSecurityGroup("applicationSecurityGroupResource", {
resourceGroupName: "string",
applicationSecurityGroupName: "string",
id: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:network:ApplicationSecurityGroup
properties:
applicationSecurityGroupName: string
id: string
location: string
resourceGroupName: string
tags:
string: string
ApplicationSecurityGroup 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 ApplicationSecurityGroup resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Application
Security stringGroup Name - The name of the application security group.
- Id string
- Resource ID.
- Location string
- Resource location.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group.
- Application
Security stringGroup Name - The name of the application security group.
- Id string
- Resource ID.
- Location string
- Resource location.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group.
- application
Security StringGroup Name - The name of the application security group.
- id String
- Resource ID.
- location String
- Resource location.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group.
- application
Security stringGroup Name - The name of the application security group.
- id string
- Resource ID.
- location string
- Resource location.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group.
- application_
security_ strgroup_ name - The name of the application security group.
- id str
- Resource ID.
- location str
- Resource location.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group.
- application
Security StringGroup Name - The name of the application security group.
- id String
- Resource ID.
- location String
- Resource location.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ApplicationSecurityGroup resource produces the following output properties:
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the application security group resource.
- Resource
Guid string - The resource GUID property of the application security group resource. It uniquely identifies a resource, even if the user changes its name or migrate the resource across subscriptions or resource groups.
- Type string
- Resource type.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the application security group resource.
- Resource
Guid string - The resource GUID property of the application security group resource. It uniquely identifies a resource, even if the user changes its name or migrate the resource across subscriptions or resource groups.
- Type string
- Resource type.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the application security group resource.
- resource
Guid String - The resource GUID property of the application security group resource. It uniquely identifies a resource, even if the user changes its name or migrate the resource across subscriptions or resource groups.
- type String
- Resource type.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioning
State string - The provisioning state of the application security group resource.
- resource
Guid string - The resource GUID property of the application security group resource. It uniquely identifies a resource, even if the user changes its name or migrate the resource across subscriptions or resource groups.
- type string
- Resource type.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_
state str - The provisioning state of the application security group resource.
- resource_
guid str - The resource GUID property of the application security group resource. It uniquely identifies a resource, even if the user changes its name or migrate the resource across subscriptions or resource groups.
- type str
- Resource type.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the application security group resource.
- resource
Guid String - The resource GUID property of the application security group resource. It uniquely identifies a resource, even if the user changes its name or migrate the resource across subscriptions or resource groups.
- type String
- Resource type.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:ApplicationSecurityGroup test-asg /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationSecurityGroups/test-asg
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0