1. Packages
  2. Azure Native
  3. API Docs
  4. security
  5. JitNetworkAccessPolicy
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.security.JitNetworkAccessPolicy

Explore with Pulumi AI

Uses Azure REST API version 2020-01-01. In version 2.x of the Azure Native provider, it used API version 2020-01-01.

Example Usage

Create JIT network access policy

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var jitNetworkAccessPolicy = new AzureNative.Security.JitNetworkAccessPolicy("jitNetworkAccessPolicy", new()
    {
        AscLocation = "westeurope",
        JitNetworkAccessPolicyName = "default",
        Kind = "Basic",
        Requests = new[]
        {
            new AzureNative.Security.Inputs.JitNetworkAccessRequestArgs
            {
                Requestor = "barbara@contoso.com",
                StartTimeUtc = "2018-05-17T08:06:45.5691611Z",
                VirtualMachines = new[]
                {
                    new AzureNative.Security.Inputs.JitNetworkAccessRequestVirtualMachineArgs
                    {
                        Id = "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1",
                        Ports = new[]
                        {
                            new AzureNative.Security.Inputs.JitNetworkAccessRequestPortArgs
                            {
                                AllowedSourceAddressPrefix = "192.127.0.2",
                                EndTimeUtc = "2018-05-17T09:06:45.5691611Z",
                                Number = 3389,
                                Status = AzureNative.Security.Status.Initiated,
                                StatusReason = AzureNative.Security.StatusReason.UserRequested,
                            },
                        },
                    },
                },
            },
        },
        ResourceGroupName = "myRg1",
        VirtualMachines = new[]
        {
            new AzureNative.Security.Inputs.JitNetworkAccessPolicyVirtualMachineArgs
            {
                Id = "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1",
                Ports = new[]
                {
                    new AzureNative.Security.Inputs.JitNetworkAccessPortRuleArgs
                    {
                        AllowedSourceAddressPrefix = "*",
                        MaxRequestAccessDuration = "PT3H",
                        Number = 22,
                        Protocol = AzureNative.Security.Protocol.All,
                    },
                    new AzureNative.Security.Inputs.JitNetworkAccessPortRuleArgs
                    {
                        AllowedSourceAddressPrefix = "*",
                        MaxRequestAccessDuration = "PT3H",
                        Number = 3389,
                        Protocol = AzureNative.Security.Protocol.All,
                    },
                },
            },
        },
    });

});
Copy
package main

import (
	security "github.com/pulumi/pulumi-azure-native-sdk/security/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := security.NewJitNetworkAccessPolicy(ctx, "jitNetworkAccessPolicy", &security.JitNetworkAccessPolicyArgs{
			AscLocation:                pulumi.String("westeurope"),
			JitNetworkAccessPolicyName: pulumi.String("default"),
			Kind:                       pulumi.String("Basic"),
			Requests: security.JitNetworkAccessRequestArray{
				&security.JitNetworkAccessRequestArgs{
					Requestor:    pulumi.String("barbara@contoso.com"),
					StartTimeUtc: pulumi.String("2018-05-17T08:06:45.5691611Z"),
					VirtualMachines: security.JitNetworkAccessRequestVirtualMachineArray{
						&security.JitNetworkAccessRequestVirtualMachineArgs{
							Id: pulumi.String("/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1"),
							Ports: security.JitNetworkAccessRequestPortArray{
								&security.JitNetworkAccessRequestPortArgs{
									AllowedSourceAddressPrefix: pulumi.String("192.127.0.2"),
									EndTimeUtc:                 pulumi.String("2018-05-17T09:06:45.5691611Z"),
									Number:                     pulumi.Int(3389),
									Status:                     pulumi.String(security.StatusInitiated),
									StatusReason:               pulumi.String(security.StatusReasonUserRequested),
								},
							},
						},
					},
				},
			},
			ResourceGroupName: pulumi.String("myRg1"),
			VirtualMachines: security.JitNetworkAccessPolicyVirtualMachineArray{
				&security.JitNetworkAccessPolicyVirtualMachineArgs{
					Id: pulumi.String("/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1"),
					Ports: security.JitNetworkAccessPortRuleArray{
						&security.JitNetworkAccessPortRuleArgs{
							AllowedSourceAddressPrefix: pulumi.String("*"),
							MaxRequestAccessDuration:   pulumi.String("PT3H"),
							Number:                     pulumi.Int(22),
							Protocol:                   pulumi.String(security.ProtocolAll),
						},
						&security.JitNetworkAccessPortRuleArgs{
							AllowedSourceAddressPrefix: pulumi.String("*"),
							MaxRequestAccessDuration:   pulumi.String("PT3H"),
							Number:                     pulumi.Int(3389),
							Protocol:                   pulumi.String(security.ProtocolAll),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.security.JitNetworkAccessPolicy;
import com.pulumi.azurenative.security.JitNetworkAccessPolicyArgs;
import com.pulumi.azurenative.security.inputs.JitNetworkAccessRequestArgs;
import com.pulumi.azurenative.security.inputs.JitNetworkAccessPolicyVirtualMachineArgs;
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 jitNetworkAccessPolicy = new JitNetworkAccessPolicy("jitNetworkAccessPolicy", JitNetworkAccessPolicyArgs.builder()
            .ascLocation("westeurope")
            .jitNetworkAccessPolicyName("default")
            .kind("Basic")
            .requests(JitNetworkAccessRequestArgs.builder()
                .requestor("barbara@contoso.com")
                .startTimeUtc("2018-05-17T08:06:45.5691611Z")
                .virtualMachines(JitNetworkAccessRequestVirtualMachineArgs.builder()
                    .id("/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1")
                    .ports(JitNetworkAccessRequestPortArgs.builder()
                        .allowedSourceAddressPrefix("192.127.0.2")
                        .endTimeUtc("2018-05-17T09:06:45.5691611Z")
                        .number(3389)
                        .status("Initiated")
                        .statusReason("UserRequested")
                        .build())
                    .build())
                .build())
            .resourceGroupName("myRg1")
            .virtualMachines(JitNetworkAccessPolicyVirtualMachineArgs.builder()
                .id("/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1")
                .ports(                
                    JitNetworkAccessPortRuleArgs.builder()
                        .allowedSourceAddressPrefix("*")
                        .maxRequestAccessDuration("PT3H")
                        .number(22)
                        .protocol("*")
                        .build(),
                    JitNetworkAccessPortRuleArgs.builder()
                        .allowedSourceAddressPrefix("*")
                        .maxRequestAccessDuration("PT3H")
                        .number(3389)
                        .protocol("*")
                        .build())
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const jitNetworkAccessPolicy = new azure_native.security.JitNetworkAccessPolicy("jitNetworkAccessPolicy", {
    ascLocation: "westeurope",
    jitNetworkAccessPolicyName: "default",
    kind: "Basic",
    requests: [{
        requestor: "barbara@contoso.com",
        startTimeUtc: "2018-05-17T08:06:45.5691611Z",
        virtualMachines: [{
            id: "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1",
            ports: [{
                allowedSourceAddressPrefix: "192.127.0.2",
                endTimeUtc: "2018-05-17T09:06:45.5691611Z",
                number: 3389,
                status: azure_native.security.Status.Initiated,
                statusReason: azure_native.security.StatusReason.UserRequested,
            }],
        }],
    }],
    resourceGroupName: "myRg1",
    virtualMachines: [{
        id: "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1",
        ports: [
            {
                allowedSourceAddressPrefix: "*",
                maxRequestAccessDuration: "PT3H",
                number: 22,
                protocol: azure_native.security.Protocol.All,
            },
            {
                allowedSourceAddressPrefix: "*",
                maxRequestAccessDuration: "PT3H",
                number: 3389,
                protocol: azure_native.security.Protocol.All,
            },
        ],
    }],
});
Copy
import pulumi
import pulumi_azure_native as azure_native

jit_network_access_policy = azure_native.security.JitNetworkAccessPolicy("jitNetworkAccessPolicy",
    asc_location="westeurope",
    jit_network_access_policy_name="default",
    kind="Basic",
    requests=[{
        "requestor": "barbara@contoso.com",
        "start_time_utc": "2018-05-17T08:06:45.5691611Z",
        "virtual_machines": [{
            "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1",
            "ports": [{
                "allowed_source_address_prefix": "192.127.0.2",
                "end_time_utc": "2018-05-17T09:06:45.5691611Z",
                "number": 3389,
                "status": azure_native.security.Status.INITIATED,
                "status_reason": azure_native.security.StatusReason.USER_REQUESTED,
            }],
        }],
    }],
    resource_group_name="myRg1",
    virtual_machines=[{
        "id": "/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1",
        "ports": [
            {
                "allowed_source_address_prefix": "*",
                "max_request_access_duration": "PT3H",
                "number": 22,
                "protocol": azure_native.security.Protocol.ALL,
            },
            {
                "allowed_source_address_prefix": "*",
                "max_request_access_duration": "PT3H",
                "number": 3389,
                "protocol": azure_native.security.Protocol.ALL,
            },
        ],
    }])
Copy
resources:
  jitNetworkAccessPolicy:
    type: azure-native:security:JitNetworkAccessPolicy
    properties:
      ascLocation: westeurope
      jitNetworkAccessPolicyName: default
      kind: Basic
      requests:
        - requestor: barbara@contoso.com
          startTimeUtc: 2018-05-17T08:06:45.5691611Z
          virtualMachines:
            - id: /subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1
              ports:
                - allowedSourceAddressPrefix: 192.127.0.2
                  endTimeUtc: 2018-05-17T09:06:45.5691611Z
                  number: 3389
                  status: Initiated
                  statusReason: UserRequested
      resourceGroupName: myRg1
      virtualMachines:
        - id: /subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/resourceGroups/myRg1/providers/Microsoft.Compute/virtualMachines/vm1
          ports:
            - allowedSourceAddressPrefix: '*'
              maxRequestAccessDuration: PT3H
              number: 22
              protocol: '*'
            - allowedSourceAddressPrefix: '*'
              maxRequestAccessDuration: PT3H
              number: 3389
              protocol: '*'
Copy

Create JitNetworkAccessPolicy Resource

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

Constructor syntax

new JitNetworkAccessPolicy(name: string, args: JitNetworkAccessPolicyArgs, opts?: CustomResourceOptions);
@overload
def JitNetworkAccessPolicy(resource_name: str,
                           args: JitNetworkAccessPolicyArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def JitNetworkAccessPolicy(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           asc_location: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           virtual_machines: Optional[Sequence[JitNetworkAccessPolicyVirtualMachineArgs]] = None,
                           jit_network_access_policy_name: Optional[str] = None,
                           kind: Optional[str] = None,
                           requests: Optional[Sequence[JitNetworkAccessRequestArgs]] = None)
func NewJitNetworkAccessPolicy(ctx *Context, name string, args JitNetworkAccessPolicyArgs, opts ...ResourceOption) (*JitNetworkAccessPolicy, error)
public JitNetworkAccessPolicy(string name, JitNetworkAccessPolicyArgs args, CustomResourceOptions? opts = null)
public JitNetworkAccessPolicy(String name, JitNetworkAccessPolicyArgs args)
public JitNetworkAccessPolicy(String name, JitNetworkAccessPolicyArgs args, CustomResourceOptions options)
type: azure-native:security:JitNetworkAccessPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. JitNetworkAccessPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. JitNetworkAccessPolicyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. JitNetworkAccessPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. JitNetworkAccessPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. JitNetworkAccessPolicyArgs
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 jitNetworkAccessPolicyResource = new AzureNative.Security.JitNetworkAccessPolicy("jitNetworkAccessPolicyResource", new()
{
    AscLocation = "string",
    ResourceGroupName = "string",
    VirtualMachines = new[]
    {
        new AzureNative.Security.Inputs.JitNetworkAccessPolicyVirtualMachineArgs
        {
            Id = "string",
            Ports = new[]
            {
                new AzureNative.Security.Inputs.JitNetworkAccessPortRuleArgs
                {
                    MaxRequestAccessDuration = "string",
                    Number = 0,
                    Protocol = "string",
                    AllowedSourceAddressPrefix = "string",
                    AllowedSourceAddressPrefixes = new[]
                    {
                        "string",
                    },
                },
            },
            PublicIpAddress = "string",
        },
    },
    JitNetworkAccessPolicyName = "string",
    Kind = "string",
    Requests = new[]
    {
        new AzureNative.Security.Inputs.JitNetworkAccessRequestArgs
        {
            Requestor = "string",
            StartTimeUtc = "string",
            VirtualMachines = new[]
            {
                new AzureNative.Security.Inputs.JitNetworkAccessRequestVirtualMachineArgs
                {
                    Id = "string",
                    Ports = new[]
                    {
                        new AzureNative.Security.Inputs.JitNetworkAccessRequestPortArgs
                        {
                            EndTimeUtc = "string",
                            Number = 0,
                            Status = "string",
                            StatusReason = "string",
                            AllowedSourceAddressPrefix = "string",
                            AllowedSourceAddressPrefixes = new[]
                            {
                                "string",
                            },
                            MappedPort = 0,
                        },
                    },
                },
            },
            Justification = "string",
        },
    },
});
Copy
example, err := security.NewJitNetworkAccessPolicy(ctx, "jitNetworkAccessPolicyResource", &security.JitNetworkAccessPolicyArgs{
	AscLocation:       pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	VirtualMachines: security.JitNetworkAccessPolicyVirtualMachineArray{
		&security.JitNetworkAccessPolicyVirtualMachineArgs{
			Id: pulumi.String("string"),
			Ports: security.JitNetworkAccessPortRuleArray{
				&security.JitNetworkAccessPortRuleArgs{
					MaxRequestAccessDuration:   pulumi.String("string"),
					Number:                     pulumi.Int(0),
					Protocol:                   pulumi.String("string"),
					AllowedSourceAddressPrefix: pulumi.String("string"),
					AllowedSourceAddressPrefixes: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
			PublicIpAddress: pulumi.String("string"),
		},
	},
	JitNetworkAccessPolicyName: pulumi.String("string"),
	Kind:                       pulumi.String("string"),
	Requests: security.JitNetworkAccessRequestArray{
		&security.JitNetworkAccessRequestArgs{
			Requestor:    pulumi.String("string"),
			StartTimeUtc: pulumi.String("string"),
			VirtualMachines: security.JitNetworkAccessRequestVirtualMachineArray{
				&security.JitNetworkAccessRequestVirtualMachineArgs{
					Id: pulumi.String("string"),
					Ports: security.JitNetworkAccessRequestPortArray{
						&security.JitNetworkAccessRequestPortArgs{
							EndTimeUtc:                 pulumi.String("string"),
							Number:                     pulumi.Int(0),
							Status:                     pulumi.String("string"),
							StatusReason:               pulumi.String("string"),
							AllowedSourceAddressPrefix: pulumi.String("string"),
							AllowedSourceAddressPrefixes: pulumi.StringArray{
								pulumi.String("string"),
							},
							MappedPort: pulumi.Int(0),
						},
					},
				},
			},
			Justification: pulumi.String("string"),
		},
	},
})
Copy
var jitNetworkAccessPolicyResource = new JitNetworkAccessPolicy("jitNetworkAccessPolicyResource", JitNetworkAccessPolicyArgs.builder()
    .ascLocation("string")
    .resourceGroupName("string")
    .virtualMachines(JitNetworkAccessPolicyVirtualMachineArgs.builder()
        .id("string")
        .ports(JitNetworkAccessPortRuleArgs.builder()
            .maxRequestAccessDuration("string")
            .number(0)
            .protocol("string")
            .allowedSourceAddressPrefix("string")
            .allowedSourceAddressPrefixes("string")
            .build())
        .publicIpAddress("string")
        .build())
    .jitNetworkAccessPolicyName("string")
    .kind("string")
    .requests(JitNetworkAccessRequestArgs.builder()
        .requestor("string")
        .startTimeUtc("string")
        .virtualMachines(JitNetworkAccessRequestVirtualMachineArgs.builder()
            .id("string")
            .ports(JitNetworkAccessRequestPortArgs.builder()
                .endTimeUtc("string")
                .number(0)
                .status("string")
                .statusReason("string")
                .allowedSourceAddressPrefix("string")
                .allowedSourceAddressPrefixes("string")
                .mappedPort(0)
                .build())
            .build())
        .justification("string")
        .build())
    .build());
Copy
jit_network_access_policy_resource = azure_native.security.JitNetworkAccessPolicy("jitNetworkAccessPolicyResource",
    asc_location="string",
    resource_group_name="string",
    virtual_machines=[{
        "id": "string",
        "ports": [{
            "max_request_access_duration": "string",
            "number": 0,
            "protocol": "string",
            "allowed_source_address_prefix": "string",
            "allowed_source_address_prefixes": ["string"],
        }],
        "public_ip_address": "string",
    }],
    jit_network_access_policy_name="string",
    kind="string",
    requests=[{
        "requestor": "string",
        "start_time_utc": "string",
        "virtual_machines": [{
            "id": "string",
            "ports": [{
                "end_time_utc": "string",
                "number": 0,
                "status": "string",
                "status_reason": "string",
                "allowed_source_address_prefix": "string",
                "allowed_source_address_prefixes": ["string"],
                "mapped_port": 0,
            }],
        }],
        "justification": "string",
    }])
Copy
const jitNetworkAccessPolicyResource = new azure_native.security.JitNetworkAccessPolicy("jitNetworkAccessPolicyResource", {
    ascLocation: "string",
    resourceGroupName: "string",
    virtualMachines: [{
        id: "string",
        ports: [{
            maxRequestAccessDuration: "string",
            number: 0,
            protocol: "string",
            allowedSourceAddressPrefix: "string",
            allowedSourceAddressPrefixes: ["string"],
        }],
        publicIpAddress: "string",
    }],
    jitNetworkAccessPolicyName: "string",
    kind: "string",
    requests: [{
        requestor: "string",
        startTimeUtc: "string",
        virtualMachines: [{
            id: "string",
            ports: [{
                endTimeUtc: "string",
                number: 0,
                status: "string",
                statusReason: "string",
                allowedSourceAddressPrefix: "string",
                allowedSourceAddressPrefixes: ["string"],
                mappedPort: 0,
            }],
        }],
        justification: "string",
    }],
});
Copy
type: azure-native:security:JitNetworkAccessPolicy
properties:
    ascLocation: string
    jitNetworkAccessPolicyName: string
    kind: string
    requests:
        - justification: string
          requestor: string
          startTimeUtc: string
          virtualMachines:
            - id: string
              ports:
                - allowedSourceAddressPrefix: string
                  allowedSourceAddressPrefixes:
                    - string
                  endTimeUtc: string
                  mappedPort: 0
                  number: 0
                  status: string
                  statusReason: string
    resourceGroupName: string
    virtualMachines:
        - id: string
          ports:
            - allowedSourceAddressPrefix: string
              allowedSourceAddressPrefixes:
                - string
              maxRequestAccessDuration: string
              number: 0
              protocol: string
          publicIpAddress: string
Copy

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

AscLocation
This property is required.
Changes to this property will trigger replacement.
string
The location where ASC stores the data of the subscription. can be retrieved from Get locations
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the user's subscription. The name is case insensitive.
VirtualMachines This property is required. List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessPolicyVirtualMachine>
Configurations for Microsoft.Compute/virtualMachines resource type.
JitNetworkAccessPolicyName Changes to this property will trigger replacement. string
Name of a Just-in-Time access configuration policy.
Kind string
Kind of the resource
Requests List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessRequest>
AscLocation
This property is required.
Changes to this property will trigger replacement.
string
The location where ASC stores the data of the subscription. can be retrieved from Get locations
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the user's subscription. The name is case insensitive.
VirtualMachines This property is required. []JitNetworkAccessPolicyVirtualMachineArgs
Configurations for Microsoft.Compute/virtualMachines resource type.
JitNetworkAccessPolicyName Changes to this property will trigger replacement. string
Name of a Just-in-Time access configuration policy.
Kind string
Kind of the resource
Requests []JitNetworkAccessRequestArgs
ascLocation
This property is required.
Changes to this property will trigger replacement.
String
The location where ASC stores the data of the subscription. can be retrieved from Get locations
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group within the user's subscription. The name is case insensitive.
virtualMachines This property is required. List<JitNetworkAccessPolicyVirtualMachine>
Configurations for Microsoft.Compute/virtualMachines resource type.
jitNetworkAccessPolicyName Changes to this property will trigger replacement. String
Name of a Just-in-Time access configuration policy.
kind String
Kind of the resource
requests List<JitNetworkAccessRequest>
ascLocation
This property is required.
Changes to this property will trigger replacement.
string
The location where ASC stores the data of the subscription. can be retrieved from Get locations
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the user's subscription. The name is case insensitive.
virtualMachines This property is required. JitNetworkAccessPolicyVirtualMachine[]
Configurations for Microsoft.Compute/virtualMachines resource type.
jitNetworkAccessPolicyName Changes to this property will trigger replacement. string
Name of a Just-in-Time access configuration policy.
kind string
Kind of the resource
requests JitNetworkAccessRequest[]
asc_location
This property is required.
Changes to this property will trigger replacement.
str
The location where ASC stores the data of the subscription. can be retrieved from Get locations
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group within the user's subscription. The name is case insensitive.
virtual_machines This property is required. Sequence[JitNetworkAccessPolicyVirtualMachineArgs]
Configurations for Microsoft.Compute/virtualMachines resource type.
jit_network_access_policy_name Changes to this property will trigger replacement. str
Name of a Just-in-Time access configuration policy.
kind str
Kind of the resource
requests Sequence[JitNetworkAccessRequestArgs]
ascLocation
This property is required.
Changes to this property will trigger replacement.
String
The location where ASC stores the data of the subscription. can be retrieved from Get locations
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group within the user's subscription. The name is case insensitive.
virtualMachines This property is required. List<Property Map>
Configurations for Microsoft.Compute/virtualMachines resource type.
jitNetworkAccessPolicyName Changes to this property will trigger replacement. String
Name of a Just-in-Time access configuration policy.
kind String
Kind of the resource
requests List<Property Map>

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Location string
Location where the resource is stored
Name string
Resource name
ProvisioningState string
Gets the provisioning state of the Just-in-Time policy.
Type string
Resource type
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Location string
Location where the resource is stored
Name string
Resource name
ProvisioningState string
Gets the provisioning state of the Just-in-Time policy.
Type string
Resource type
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
location String
Location where the resource is stored
name String
Resource name
provisioningState String
Gets the provisioning state of the Just-in-Time policy.
type String
Resource type
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
location string
Location where the resource is stored
name string
Resource name
provisioningState string
Gets the provisioning state of the Just-in-Time policy.
type string
Resource type
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
location str
Location where the resource is stored
name str
Resource name
provisioning_state str
Gets the provisioning state of the Just-in-Time policy.
type str
Resource type
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
location String
Location where the resource is stored
name String
Resource name
provisioningState String
Gets the provisioning state of the Just-in-Time policy.
type String
Resource type

Supporting Types

JitNetworkAccessPolicyVirtualMachine
, JitNetworkAccessPolicyVirtualMachineArgs

Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessPortRule>
Port configurations for the virtual machine
PublicIpAddress string
Public IP address of the Azure Firewall that is linked to this policy, if applicable
Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. []JitNetworkAccessPortRule
Port configurations for the virtual machine
PublicIpAddress string
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<JitNetworkAccessPortRule>
Port configurations for the virtual machine
publicIpAddress String
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. string
Resource ID of the virtual machine that is linked to this policy
ports This property is required. JitNetworkAccessPortRule[]
Port configurations for the virtual machine
publicIpAddress string
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. str
Resource ID of the virtual machine that is linked to this policy
ports This property is required. Sequence[JitNetworkAccessPortRule]
Port configurations for the virtual machine
public_ip_address str
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<Property Map>
Port configurations for the virtual machine
publicIpAddress String
Public IP address of the Azure Firewall that is linked to this policy, if applicable

JitNetworkAccessPolicyVirtualMachineResponse
, JitNetworkAccessPolicyVirtualMachineResponseArgs

Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessPortRuleResponse>
Port configurations for the virtual machine
PublicIpAddress string
Public IP address of the Azure Firewall that is linked to this policy, if applicable
Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. []JitNetworkAccessPortRuleResponse
Port configurations for the virtual machine
PublicIpAddress string
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<JitNetworkAccessPortRuleResponse>
Port configurations for the virtual machine
publicIpAddress String
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. string
Resource ID of the virtual machine that is linked to this policy
ports This property is required. JitNetworkAccessPortRuleResponse[]
Port configurations for the virtual machine
publicIpAddress string
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. str
Resource ID of the virtual machine that is linked to this policy
ports This property is required. Sequence[JitNetworkAccessPortRuleResponse]
Port configurations for the virtual machine
public_ip_address str
Public IP address of the Azure Firewall that is linked to this policy, if applicable
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<Property Map>
Port configurations for the virtual machine
publicIpAddress String
Public IP address of the Azure Firewall that is linked to this policy, if applicable

JitNetworkAccessPortRule
, JitNetworkAccessPortRuleArgs

MaxRequestAccessDuration This property is required. string
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
Number This property is required. int
Protocol This property is required. string | Pulumi.AzureNative.Security.Protocol
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes List<string>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
MaxRequestAccessDuration This property is required. string
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
Number This property is required. int
Protocol This property is required. string | Protocol
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes []string
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
maxRequestAccessDuration This property is required. String
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. Integer
protocol This property is required. String | Protocol
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
maxRequestAccessDuration This property is required. string
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. number
protocol This property is required. string | Protocol
allowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes string[]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
max_request_access_duration This property is required. str
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. int
protocol This property is required. str | Protocol
allowed_source_address_prefix str
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowed_source_address_prefixes Sequence[str]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
maxRequestAccessDuration This property is required. String
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. Number
protocol This property is required. String | "TCP" | "UDP" | "*"
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.

JitNetworkAccessPortRuleResponse
, JitNetworkAccessPortRuleResponseArgs

MaxRequestAccessDuration This property is required. string
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
Number This property is required. int
Protocol This property is required. string
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes List<string>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
MaxRequestAccessDuration This property is required. string
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
Number This property is required. int
Protocol This property is required. string
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes []string
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
maxRequestAccessDuration This property is required. String
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. Integer
protocol This property is required. String
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
maxRequestAccessDuration This property is required. string
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. number
protocol This property is required. string
allowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes string[]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
max_request_access_duration This property is required. str
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. int
protocol This property is required. str
allowed_source_address_prefix str
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowed_source_address_prefixes Sequence[str]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
maxRequestAccessDuration This property is required. String
Maximum duration requests can be made for. In ISO 8601 duration format. Minimum 5 minutes, maximum 1 day
number This property is required. Number
protocol This property is required. String
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.

JitNetworkAccessRequest
, JitNetworkAccessRequestArgs

Requestor This property is required. string
The identity of the person who made the request
StartTimeUtc This property is required. string
The start time of the request in UTC
VirtualMachines This property is required. List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessRequestVirtualMachine>
Justification string
The justification for making the initiate request
Requestor This property is required. string
The identity of the person who made the request
StartTimeUtc This property is required. string
The start time of the request in UTC
VirtualMachines This property is required. []JitNetworkAccessRequestVirtualMachine
Justification string
The justification for making the initiate request
requestor This property is required. String
The identity of the person who made the request
startTimeUtc This property is required. String
The start time of the request in UTC
virtualMachines This property is required. List<JitNetworkAccessRequestVirtualMachine>
justification String
The justification for making the initiate request
requestor This property is required. string
The identity of the person who made the request
startTimeUtc This property is required. string
The start time of the request in UTC
virtualMachines This property is required. JitNetworkAccessRequestVirtualMachine[]
justification string
The justification for making the initiate request
requestor This property is required. str
The identity of the person who made the request
start_time_utc This property is required. str
The start time of the request in UTC
virtual_machines This property is required. Sequence[JitNetworkAccessRequestVirtualMachine]
justification str
The justification for making the initiate request
requestor This property is required. String
The identity of the person who made the request
startTimeUtc This property is required. String
The start time of the request in UTC
virtualMachines This property is required. List<Property Map>
justification String
The justification for making the initiate request

JitNetworkAccessRequestPort
, JitNetworkAccessRequestPortArgs

EndTimeUtc This property is required. string
The date & time at which the request ends in UTC
Number This property is required. int
Status This property is required. string | Pulumi.AzureNative.Security.Status
The status of the port
StatusReason This property is required. string | Pulumi.AzureNative.Security.StatusReason
A description of why the status has its value
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes List<string>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
MappedPort int
The port which is mapped to this port's number in the Azure Firewall, if applicable
EndTimeUtc This property is required. string
The date & time at which the request ends in UTC
Number This property is required. int
Status This property is required. string | Status
The status of the port
StatusReason This property is required. string | StatusReason
A description of why the status has its value
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes []string
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
MappedPort int
The port which is mapped to this port's number in the Azure Firewall, if applicable
endTimeUtc This property is required. String
The date & time at which the request ends in UTC
number This property is required. Integer
status This property is required. String | Status
The status of the port
statusReason This property is required. String | StatusReason
A description of why the status has its value
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mappedPort Integer
The port which is mapped to this port's number in the Azure Firewall, if applicable
endTimeUtc This property is required. string
The date & time at which the request ends in UTC
number This property is required. number
status This property is required. string | Status
The status of the port
statusReason This property is required. string | StatusReason
A description of why the status has its value
allowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes string[]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mappedPort number
The port which is mapped to this port's number in the Azure Firewall, if applicable
end_time_utc This property is required. str
The date & time at which the request ends in UTC
number This property is required. int
status This property is required. str | Status
The status of the port
status_reason This property is required. str | StatusReason
A description of why the status has its value
allowed_source_address_prefix str
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowed_source_address_prefixes Sequence[str]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mapped_port int
The port which is mapped to this port's number in the Azure Firewall, if applicable
endTimeUtc This property is required. String
The date & time at which the request ends in UTC
number This property is required. Number
status This property is required. String | "Revoked" | "Initiated"
The status of the port
statusReason This property is required. String | "Expired" | "UserRequested" | "NewerRequestInitiated"
A description of why the status has its value
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mappedPort Number
The port which is mapped to this port's number in the Azure Firewall, if applicable

JitNetworkAccessRequestPortResponse
, JitNetworkAccessRequestPortResponseArgs

EndTimeUtc This property is required. string
The date & time at which the request ends in UTC
Number This property is required. int
Status This property is required. string
The status of the port
StatusReason This property is required. string
A description of why the status has its value
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes List<string>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
MappedPort int
The port which is mapped to this port's number in the Azure Firewall, if applicable
EndTimeUtc This property is required. string
The date & time at which the request ends in UTC
Number This property is required. int
Status This property is required. string
The status of the port
StatusReason This property is required. string
A description of why the status has its value
AllowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
AllowedSourceAddressPrefixes []string
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
MappedPort int
The port which is mapped to this port's number in the Azure Firewall, if applicable
endTimeUtc This property is required. String
The date & time at which the request ends in UTC
number This property is required. Integer
status This property is required. String
The status of the port
statusReason This property is required. String
A description of why the status has its value
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mappedPort Integer
The port which is mapped to this port's number in the Azure Firewall, if applicable
endTimeUtc This property is required. string
The date & time at which the request ends in UTC
number This property is required. number
status This property is required. string
The status of the port
statusReason This property is required. string
A description of why the status has its value
allowedSourceAddressPrefix string
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes string[]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mappedPort number
The port which is mapped to this port's number in the Azure Firewall, if applicable
end_time_utc This property is required. str
The date & time at which the request ends in UTC
number This property is required. int
status This property is required. str
The status of the port
status_reason This property is required. str
A description of why the status has its value
allowed_source_address_prefix str
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowed_source_address_prefixes Sequence[str]
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mapped_port int
The port which is mapped to this port's number in the Azure Firewall, if applicable
endTimeUtc This property is required. String
The date & time at which the request ends in UTC
number This property is required. Number
status This property is required. String
The status of the port
statusReason This property is required. String
A description of why the status has its value
allowedSourceAddressPrefix String
Mutually exclusive with the "allowedSourceAddressPrefixes" parameter. Should be an IP address or CIDR, for example "192.168.0.3" or "192.168.0.0/16".
allowedSourceAddressPrefixes List<String>
Mutually exclusive with the "allowedSourceAddressPrefix" parameter.
mappedPort Number
The port which is mapped to this port's number in the Azure Firewall, if applicable

JitNetworkAccessRequestResponse
, JitNetworkAccessRequestResponseArgs

Requestor This property is required. string
The identity of the person who made the request
StartTimeUtc This property is required. string
The start time of the request in UTC
VirtualMachines This property is required. List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessRequestVirtualMachineResponse>
Justification string
The justification for making the initiate request
Requestor This property is required. string
The identity of the person who made the request
StartTimeUtc This property is required. string
The start time of the request in UTC
VirtualMachines This property is required. []JitNetworkAccessRequestVirtualMachineResponse
Justification string
The justification for making the initiate request
requestor This property is required. String
The identity of the person who made the request
startTimeUtc This property is required. String
The start time of the request in UTC
virtualMachines This property is required. List<JitNetworkAccessRequestVirtualMachineResponse>
justification String
The justification for making the initiate request
requestor This property is required. string
The identity of the person who made the request
startTimeUtc This property is required. string
The start time of the request in UTC
virtualMachines This property is required. JitNetworkAccessRequestVirtualMachineResponse[]
justification string
The justification for making the initiate request
requestor This property is required. str
The identity of the person who made the request
start_time_utc This property is required. str
The start time of the request in UTC
virtual_machines This property is required. Sequence[JitNetworkAccessRequestVirtualMachineResponse]
justification str
The justification for making the initiate request
requestor This property is required. String
The identity of the person who made the request
startTimeUtc This property is required. String
The start time of the request in UTC
virtualMachines This property is required. List<Property Map>
justification String
The justification for making the initiate request

JitNetworkAccessRequestVirtualMachine
, JitNetworkAccessRequestVirtualMachineArgs

Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessRequestPort>
The ports that were opened for the virtual machine
Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. []JitNetworkAccessRequestPort
The ports that were opened for the virtual machine
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<JitNetworkAccessRequestPort>
The ports that were opened for the virtual machine
id This property is required. string
Resource ID of the virtual machine that is linked to this policy
ports This property is required. JitNetworkAccessRequestPort[]
The ports that were opened for the virtual machine
id This property is required. str
Resource ID of the virtual machine that is linked to this policy
ports This property is required. Sequence[JitNetworkAccessRequestPort]
The ports that were opened for the virtual machine
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<Property Map>
The ports that were opened for the virtual machine

JitNetworkAccessRequestVirtualMachineResponse
, JitNetworkAccessRequestVirtualMachineResponseArgs

Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. List<Pulumi.AzureNative.Security.Inputs.JitNetworkAccessRequestPortResponse>
The ports that were opened for the virtual machine
Id This property is required. string
Resource ID of the virtual machine that is linked to this policy
Ports This property is required. []JitNetworkAccessRequestPortResponse
The ports that were opened for the virtual machine
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<JitNetworkAccessRequestPortResponse>
The ports that were opened for the virtual machine
id This property is required. string
Resource ID of the virtual machine that is linked to this policy
ports This property is required. JitNetworkAccessRequestPortResponse[]
The ports that were opened for the virtual machine
id This property is required. str
Resource ID of the virtual machine that is linked to this policy
ports This property is required. Sequence[JitNetworkAccessRequestPortResponse]
The ports that were opened for the virtual machine
id This property is required. String
Resource ID of the virtual machine that is linked to this policy
ports This property is required. List<Property Map>
The ports that were opened for the virtual machine

Protocol
, ProtocolArgs

TCP
TCP
UDP
UDP
All
*
ProtocolTCP
TCP
ProtocolUDP
UDP
ProtocolAll
*
TCP
TCP
UDP
UDP
All
*
TCP
TCP
UDP
UDP
All
*
TCP
TCP
UDP
UDP
ALL
*
"TCP"
TCP
"UDP"
UDP
"*"
*

Status
, StatusArgs

Revoked
Revoked
Initiated
Initiated
StatusRevoked
Revoked
StatusInitiated
Initiated
Revoked
Revoked
Initiated
Initiated
Revoked
Revoked
Initiated
Initiated
REVOKED
Revoked
INITIATED
Initiated
"Revoked"
Revoked
"Initiated"
Initiated

StatusReason
, StatusReasonArgs

Expired
Expired
UserRequested
UserRequested
NewerRequestInitiated
NewerRequestInitiated
StatusReasonExpired
Expired
StatusReasonUserRequested
UserRequested
StatusReasonNewerRequestInitiated
NewerRequestInitiated
Expired
Expired
UserRequested
UserRequested
NewerRequestInitiated
NewerRequestInitiated
Expired
Expired
UserRequested
UserRequested
NewerRequestInitiated
NewerRequestInitiated
EXPIRED
Expired
USER_REQUESTED
UserRequested
NEWER_REQUEST_INITIATED
NewerRequestInitiated
"Expired"
Expired
"UserRequested"
UserRequested
"NewerRequestInitiated"
NewerRequestInitiated

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:security:JitNetworkAccessPolicy default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/locations/{ascLocation}/jitNetworkAccessPolicies/{jitNetworkAccessPolicyName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0