1. Packages
  2. Nomad Provider
  3. API Docs
  4. getAclPolicy
Nomad v2.4.3 published on Saturday, Mar 15, 2025 by Pulumi

nomad.getAclPolicy

Explore with Pulumi AI

Nomad v2.4.3 published on Saturday, Mar 15, 2025 by Pulumi

Retrieve information on an ACL Policy.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as nomad from "@pulumi/nomad";

const myPolicy = nomad.getAclPolicy({
    name: "my-policy",
});
Copy
import pulumi
import pulumi_nomad as nomad

my_policy = nomad.get_acl_policy(name="my-policy")
Copy
package main

import (
	"github.com/pulumi/pulumi-nomad/sdk/v2/go/nomad"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := nomad.LookupAclPolicy(ctx, &nomad.LookupAclPolicyArgs{
			Name: "my-policy",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nomad = Pulumi.Nomad;

return await Deployment.RunAsync(() => 
{
    var myPolicy = Nomad.GetAclPolicy.Invoke(new()
    {
        Name = "my-policy",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nomad.NomadFunctions;
import com.pulumi.nomad.inputs.GetAclPolicyArgs;
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 myPolicy = NomadFunctions.getAclPolicy(GetAclPolicyArgs.builder()
            .name("my-policy")
            .build());

    }
}
Copy
variables:
  myPolicy:
    fn::invoke:
      function: nomad:getAclPolicy
      arguments:
        name: my-policy
Copy

Using getAclPolicy

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 getAclPolicy(args: GetAclPolicyArgs, opts?: InvokeOptions): Promise<GetAclPolicyResult>
function getAclPolicyOutput(args: GetAclPolicyOutputArgs, opts?: InvokeOptions): Output<GetAclPolicyResult>
Copy
def get_acl_policy(name: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetAclPolicyResult
def get_acl_policy_output(name: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetAclPolicyResult]
Copy
func LookupAclPolicy(ctx *Context, args *LookupAclPolicyArgs, opts ...InvokeOption) (*LookupAclPolicyResult, error)
func LookupAclPolicyOutput(ctx *Context, args *LookupAclPolicyOutputArgs, opts ...InvokeOption) LookupAclPolicyResultOutput
Copy

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

public static class GetAclPolicy 
{
    public static Task<GetAclPolicyResult> InvokeAsync(GetAclPolicyArgs args, InvokeOptions? opts = null)
    public static Output<GetAclPolicyResult> Invoke(GetAclPolicyInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAclPolicyResult> getAclPolicy(GetAclPolicyArgs args, InvokeOptions options)
public static Output<GetAclPolicyResult> getAclPolicy(GetAclPolicyArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: nomad:index/getAclPolicy:getAclPolicy
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Name This property is required. string
(string) - the name of the ACL Policy.
Name This property is required. string
(string) - the name of the ACL Policy.
name This property is required. String
(string) - the name of the ACL Policy.
name This property is required. string
(string) - the name of the ACL Policy.
name This property is required. str
(string) - the name of the ACL Policy.
name This property is required. String
(string) - the name of the ACL Policy.

getAclPolicy Result

The following output properties are available:

Description string
(string) - the description of the ACL Policy.
Id string
The provider-assigned unique ID for this managed resource.
Name string
(string) - the name of the ACL Policy.
Rules string
(string) - the ACL Policy rules in HCL format.
Description string
(string) - the description of the ACL Policy.
Id string
The provider-assigned unique ID for this managed resource.
Name string
(string) - the name of the ACL Policy.
Rules string
(string) - the ACL Policy rules in HCL format.
description String
(string) - the description of the ACL Policy.
id String
The provider-assigned unique ID for this managed resource.
name String
(string) - the name of the ACL Policy.
rules String
(string) - the ACL Policy rules in HCL format.
description string
(string) - the description of the ACL Policy.
id string
The provider-assigned unique ID for this managed resource.
name string
(string) - the name of the ACL Policy.
rules string
(string) - the ACL Policy rules in HCL format.
description str
(string) - the description of the ACL Policy.
id str
The provider-assigned unique ID for this managed resource.
name str
(string) - the name of the ACL Policy.
rules str
(string) - the ACL Policy rules in HCL format.
description String
(string) - the description of the ACL Policy.
id String
The provider-assigned unique ID for this managed resource.
name String
(string) - the name of the ACL Policy.
rules String
(string) - the ACL Policy rules in HCL format.

Package Details

Repository
HashiCorp Nomad pulumi/pulumi-nomad
License
Apache-2.0
Notes
This Pulumi package is based on the nomad Terraform Provider.
Nomad v2.4.3 published on Saturday, Mar 15, 2025 by Pulumi