published on Wednesday, Jul 22, 2026 by Pulumi
published on Wednesday, Jul 22, 2026 by Pulumi
Configures an existing RADIUS auth backend mount in Vault.
The RADIUS auth method allows users to authenticate with Vault using an existing RADIUS server that accepts the PAP authentication scheme.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const radius = new vault.AuthBackend("radius", {
type: "radius",
path: "radius",
});
const example = new vault.radius.AuthBackend("example", {
mount: radius.path,
host: "radius.example.com",
secretWo: "supersecretpassword",
secretWoVersion: 1,
});
import pulumi
import pulumi_vault as vault
radius = vault.AuthBackend("radius",
type="radius",
path="radius")
example = vault.radius.AuthBackend("example",
mount=radius.path,
host="radius.example.com",
secret_wo="supersecretpassword",
secret_wo_version=1)
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v7/go/vault"
"github.com/pulumi/pulumi-vault/sdk/v7/go/vault/radius"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
radius2, err := vault.NewAuthBackend(ctx, "radius", &vault.AuthBackendArgs{
Type: pulumi.String("radius"),
Path: pulumi.String("radius"),
})
if err != nil {
return err
}
_, err = radius.NewAuthBackend(ctx, "example", &radius.AuthBackendArgs{
Mount: radius2.Path,
Host: pulumi.String("radius.example.com"),
SecretWo: pulumi.String("supersecretpassword"),
SecretWoVersion: pulumi.Int(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var radius = new Vault.AuthBackend("radius", new()
{
Type = "radius",
Path = "radius",
});
var example = new Vault.Radius.AuthBackend("example", new()
{
Mount = radius.Path,
Host = "radius.example.com",
SecretWo = "supersecretpassword",
SecretWoVersion = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import java.util.ArrayList;
import java.util.Arrays;
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 radius = new com.pulumi.vault.AuthBackend("radius", com.pulumi.vault.AuthBackendArgs.builder()
.type("radius")
.path("radius")
.build());
var example = new com.pulumi.vault.radius.AuthBackend("example", com.pulumi.vault.radius.AuthBackendArgs.builder()
.mount(radius.path())
.host("radius.example.com")
.secretWo("supersecretpassword")
.secretWoVersion(1)
.build());
}
}
resources:
radius:
type: vault:AuthBackend
properties:
type: radius
path: radius
example:
type: vault:radius:AuthBackend
properties:
mount: ${radius.path}
host: radius.example.com
secretWo: supersecretpassword
secretWoVersion: 1
pulumi {
required_providers {
vault = {
source = "pulumi/vault"
}
}
}
resource "vault_authbackend" "radius" {
type = "radius"
path = "radius"
}
resource "vault_radius_authbackend" "example" {
mount = vault_authbackend.radius.path
host = "radius.example.com"
secret_wo = "supersecretpassword"
secret_wo_version = 1
}
With All Options
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const radius = new vault.AuthBackend("radius", {
type: "radius",
path: "my-radius",
});
const example = new vault.radius.AuthBackend("example", {
mount: radius.path,
host: "radius.example.com",
port: 1812,
secretWo: "supersecretpassword",
secretWoVersion: 1,
unregisteredUserPolicies: [
"default",
"guest",
],
dialTimeout: 10,
readTimeout: 10,
nasPort: 10,
tokenTtl: 3600,
tokenMaxTtl: 7200,
tokenPolicies: [
"default",
"radius-users",
],
aliasMetadata: {
username: "name",
},
});
import pulumi
import pulumi_vault as vault
radius = vault.AuthBackend("radius",
type="radius",
path="my-radius")
example = vault.radius.AuthBackend("example",
mount=radius.path,
host="radius.example.com",
port=1812,
secret_wo="supersecretpassword",
secret_wo_version=1,
unregistered_user_policies=[
"default",
"guest",
],
dial_timeout=10,
read_timeout=10,
nas_port=10,
token_ttl=3600,
token_max_ttl=7200,
token_policies=[
"default",
"radius-users",
],
alias_metadata={
"username": "name",
})
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v7/go/vault"
"github.com/pulumi/pulumi-vault/sdk/v7/go/vault/radius"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
radius2, err := vault.NewAuthBackend(ctx, "radius", &vault.AuthBackendArgs{
Type: pulumi.String("radius"),
Path: pulumi.String("my-radius"),
})
if err != nil {
return err
}
_, err = radius.NewAuthBackend(ctx, "example", &radius.AuthBackendArgs{
Mount: radius2.Path,
Host: pulumi.String("radius.example.com"),
Port: pulumi.Int(1812),
SecretWo: pulumi.String("supersecretpassword"),
SecretWoVersion: pulumi.Int(1),
UnregisteredUserPolicies: pulumi.StringArray{
pulumi.String("default"),
pulumi.String("guest"),
},
DialTimeout: pulumi.Int(10),
ReadTimeout: pulumi.Int(10),
NasPort: pulumi.Int(10),
TokenTtl: pulumi.Int(3600),
TokenMaxTtl: pulumi.Int(7200),
TokenPolicies: pulumi.StringArray{
pulumi.String("default"),
pulumi.String("radius-users"),
},
AliasMetadata: pulumi.StringMap{
"username": pulumi.String("name"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var radius = new Vault.AuthBackend("radius", new()
{
Type = "radius",
Path = "my-radius",
});
var example = new Vault.Radius.AuthBackend("example", new()
{
Mount = radius.Path,
Host = "radius.example.com",
Port = 1812,
SecretWo = "supersecretpassword",
SecretWoVersion = 1,
UnregisteredUserPolicies = new[]
{
"default",
"guest",
},
DialTimeout = 10,
ReadTimeout = 10,
NasPort = 10,
TokenTtl = 3600,
TokenMaxTtl = 7200,
TokenPolicies = new[]
{
"default",
"radius-users",
},
AliasMetadata =
{
{ "username", "name" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import java.util.ArrayList;
import java.util.Arrays;
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 radius = new com.pulumi.vault.AuthBackend("radius", com.pulumi.vault.AuthBackendArgs.builder()
.type("radius")
.path("my-radius")
.build());
var example = new com.pulumi.vault.radius.AuthBackend("example", com.pulumi.vault.radius.AuthBackendArgs.builder()
.mount(radius.path())
.host("radius.example.com")
.port(1812)
.secretWo("supersecretpassword")
.secretWoVersion(1)
.unregisteredUserPolicies(
"default",
"guest")
.dialTimeout(10)
.readTimeout(10)
.nasPort(10)
.tokenTtl(3600)
.tokenMaxTtl(7200)
.tokenPolicies(
"default",
"radius-users")
.aliasMetadata(Map.of("username", "name"))
.build());
}
}
resources:
radius:
type: vault:AuthBackend
properties:
type: radius
path: my-radius
example:
type: vault:radius:AuthBackend
properties:
mount: ${radius.path}
host: radius.example.com
port: 1812
secretWo: supersecretpassword
secretWoVersion: 1
unregisteredUserPolicies:
- default
- guest
dialTimeout: 10
readTimeout: 10
nasPort: 10
tokenTtl: 3600
tokenMaxTtl: 7200
tokenPolicies:
- default
- radius-users
aliasMetadata:
username: name
pulumi {
required_providers {
vault = {
source = "pulumi/vault"
}
}
}
resource "vault_authbackend" "radius" {
type = "radius"
path = "my-radius"
}
resource "vault_radius_authbackend" "example" {
mount = vault_authbackend.radius.path
host = "radius.example.com"
port = 1812
secret_wo = "supersecretpassword"
secret_wo_version = 1
unregistered_user_policies = ["default", "guest"]
dial_timeout = 10
read_timeout = 10
nas_port = 10
token_ttl = 3600
token_max_ttl = 7200
token_policies = ["default", "radius-users"]
alias_metadata = {
"username" = "name"
}
}
Create AuthBackend Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthBackend(name: string, args: AuthBackendArgs, opts?: CustomResourceOptions);@overload
def AuthBackend(resource_name: str,
args: AuthBackendArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthBackend(resource_name: str,
opts: Optional[ResourceOptions] = None,
secret_wo: Optional[str] = None,
secret_wo_version: Optional[int] = None,
host: Optional[str] = None,
mount: Optional[str] = None,
token_bound_cidrs: Optional[Sequence[str]] = None,
token_explicit_max_ttl: Optional[int] = None,
port: Optional[int] = None,
read_timeout: Optional[int] = None,
namespace: Optional[str] = None,
dial_timeout: Optional[int] = None,
alias_metadata: Optional[Mapping[str, str]] = None,
nas_port: Optional[int] = None,
token_max_ttl: Optional[int] = None,
token_no_default_policy: Optional[bool] = None,
token_num_uses: Optional[int] = None,
token_period: Optional[int] = None,
token_policies: Optional[Sequence[str]] = None,
token_ttl: Optional[int] = None,
token_type: Optional[str] = None,
unregistered_user_policies: Optional[Sequence[str]] = None)func NewAuthBackend(ctx *Context, name string, args AuthBackendArgs, opts ...ResourceOption) (*AuthBackend, error)public AuthBackend(string name, AuthBackendArgs args, CustomResourceOptions? opts = null)
public AuthBackend(String name, AuthBackendArgs args)
public AuthBackend(String name, AuthBackendArgs args, CustomResourceOptions options)
type: vault:radius:AuthBackend
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "vault_radius_auth_backend" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AuthBackendArgs
- 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 AuthBackendArgs
- 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 AuthBackendArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthBackendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthBackendArgs
- 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 exampleauthBackendResourceResourceFromRadiusauthBackend = new Vault.Radius.AuthBackend("exampleauthBackendResourceResourceFromRadiusauthBackend", new()
{
SecretWo = "string",
SecretWoVersion = 0,
Host = "string",
Mount = "string",
TokenBoundCidrs = new[]
{
"string",
},
TokenExplicitMaxTtl = 0,
Port = 0,
ReadTimeout = 0,
Namespace = "string",
DialTimeout = 0,
AliasMetadata =
{
{ "string", "string" },
},
NasPort = 0,
TokenMaxTtl = 0,
TokenNoDefaultPolicy = false,
TokenNumUses = 0,
TokenPeriod = 0,
TokenPolicies = new[]
{
"string",
},
TokenTtl = 0,
TokenType = "string",
UnregisteredUserPolicies = new[]
{
"string",
},
});
example, err := radius.NewAuthBackend(ctx, "exampleauthBackendResourceResourceFromRadiusauthBackend", &radius.AuthBackendArgs{
SecretWo: pulumi.String("string"),
SecretWoVersion: pulumi.Int(0),
Host: pulumi.String("string"),
Mount: pulumi.String("string"),
TokenBoundCidrs: pulumi.StringArray{
pulumi.String("string"),
},
TokenExplicitMaxTtl: pulumi.Int(0),
Port: pulumi.Int(0),
ReadTimeout: pulumi.Int(0),
Namespace: pulumi.String("string"),
DialTimeout: pulumi.Int(0),
AliasMetadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
NasPort: pulumi.Int(0),
TokenMaxTtl: pulumi.Int(0),
TokenNoDefaultPolicy: pulumi.Bool(false),
TokenNumUses: pulumi.Int(0),
TokenPeriod: pulumi.Int(0),
TokenPolicies: pulumi.StringArray{
pulumi.String("string"),
},
TokenTtl: pulumi.Int(0),
TokenType: pulumi.String("string"),
UnregisteredUserPolicies: pulumi.StringArray{
pulumi.String("string"),
},
})
resource "vault_radius_auth_backend" "exampleauthBackendResourceResourceFromRadiusauthBackend" {
lifecycle {
create_before_destroy = true
}
secret_wo = "string"
secret_wo_version = 0
host = "string"
mount = "string"
token_bound_cidrs = ["string"]
token_explicit_max_ttl = 0
port = 0
read_timeout = 0
namespace = "string"
dial_timeout = 0
alias_metadata = {
"string" = "string"
}
nas_port = 0
token_max_ttl = 0
token_no_default_policy = false
token_num_uses = 0
token_period = 0
token_policies = ["string"]
token_ttl = 0
token_type = "string"
unregistered_user_policies = ["string"]
}
var exampleauthBackendResourceResourceFromRadiusauthBackend = new com.pulumi.vault.radius.AuthBackend("exampleauthBackendResourceResourceFromRadiusauthBackend", com.pulumi.vault.radius.AuthBackendArgs.builder()
.secretWo("string")
.secretWoVersion(0)
.host("string")
.mount("string")
.tokenBoundCidrs("string")
.tokenExplicitMaxTtl(0)
.port(0)
.readTimeout(0)
.namespace("string")
.dialTimeout(0)
.aliasMetadata(Map.of("string", "string"))
.nasPort(0)
.tokenMaxTtl(0)
.tokenNoDefaultPolicy(false)
.tokenNumUses(0)
.tokenPeriod(0)
.tokenPolicies("string")
.tokenTtl(0)
.tokenType("string")
.unregisteredUserPolicies("string")
.build());
exampleauth_backend_resource_resource_from_radiusauth_backend = vault.radius.AuthBackend("exampleauthBackendResourceResourceFromRadiusauthBackend",
secret_wo="string",
secret_wo_version=0,
host="string",
mount="string",
token_bound_cidrs=["string"],
token_explicit_max_ttl=0,
port=0,
read_timeout=0,
namespace="string",
dial_timeout=0,
alias_metadata={
"string": "string",
},
nas_port=0,
token_max_ttl=0,
token_no_default_policy=False,
token_num_uses=0,
token_period=0,
token_policies=["string"],
token_ttl=0,
token_type="string",
unregistered_user_policies=["string"])
const exampleauthBackendResourceResourceFromRadiusauthBackend = new vault.radius.AuthBackend("exampleauthBackendResourceResourceFromRadiusauthBackend", {
secretWo: "string",
secretWoVersion: 0,
host: "string",
mount: "string",
tokenBoundCidrs: ["string"],
tokenExplicitMaxTtl: 0,
port: 0,
readTimeout: 0,
namespace: "string",
dialTimeout: 0,
aliasMetadata: {
string: "string",
},
nasPort: 0,
tokenMaxTtl: 0,
tokenNoDefaultPolicy: false,
tokenNumUses: 0,
tokenPeriod: 0,
tokenPolicies: ["string"],
tokenTtl: 0,
tokenType: "string",
unregisteredUserPolicies: ["string"],
});
type: vault:radius:AuthBackend
properties:
aliasMetadata:
string: string
dialTimeout: 0
host: string
mount: string
namespace: string
nasPort: 0
port: 0
readTimeout: 0
secretWo: string
secretWoVersion: 0
tokenBoundCidrs:
- string
tokenExplicitMaxTtl: 0
tokenMaxTtl: 0
tokenNoDefaultPolicy: false
tokenNumUses: 0
tokenPeriod: 0
tokenPolicies:
- string
tokenTtl: 0
tokenType: string
unregisteredUserPolicies:
- string
AuthBackend 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 AuthBackend resource accepts the following input properties:
- Host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - Mount string
- Path of the enabled RADIUS auth backend mount to configure.
- Secret
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- Secret
Wo intVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - Alias
Metadata Dictionary<string, string> - A map of string to string that will be set as metadata on the identity alias
- Dial
Timeout int - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Namespace string
- Target namespace. (requires Enterprise)
- Nas
Port int - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Port int
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - Read
Timeout int - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Token
Bound List<string>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies List<string> - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Unregistered
User List<string>Policies - A set of policies to be granted to unregistered users.
- Host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - Mount string
- Path of the enabled RADIUS auth backend mount to configure.
- Secret
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- Secret
Wo intVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - Alias
Metadata map[string]string - A map of string to string that will be set as metadata on the identity alias
- Dial
Timeout int - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Namespace string
- Target namespace. (requires Enterprise)
- Nas
Port int - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Port int
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - Read
Timeout int - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Token
Bound []stringCidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies []string - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Unregistered
User []stringPolicies - A set of policies to be granted to unregistered users.
- host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount string
- Path of the enabled RADIUS auth backend mount to configure.
- secret_
wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret_
wo_ numberversion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - alias_
metadata map(string) - A map of string to string that will be set as metadata on the identity alias
- dial_
timeout number - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - namespace string
- Target namespace. (requires Enterprise)
- nas_
port number - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port number
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read_
timeout number - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - token_
bound_ list(string)cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token_
explicit_ numbermax_ ttl - Generated Token's Explicit Maximum TTL in seconds
- token_
max_ numberttl - The maximum lifetime of the generated token
- token_
no_ booldefault_ policy - If true, the 'default' policy will not automatically be added to generated tokens
- token_
num_ numberuses - The maximum number of times a token may be used, a value of zero means unlimited
- token_
period number - Generated Token's Period
- token_
policies list(string) - Generated Token's Policies
- token_
ttl number - The initial ttl of the token to generate in seconds
- token_
type string - The type of token to generate, service or batch
- unregistered_
user_ list(string)policies - A set of policies to be granted to unregistered users.
- host String
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount String
- Path of the enabled RADIUS auth backend mount to configure.
- secret
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret
Wo IntegerVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - alias
Metadata Map<String,String> - A map of string to string that will be set as metadata on the identity alias
- dial
Timeout Integer - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - namespace String
- Target namespace. (requires Enterprise)
- nas
Port Integer - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port Integer
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read
Timeout Integer - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit IntegerMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max IntegerTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num IntegerUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Integer - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Integer - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- unregistered
User List<String>Policies - A set of policies to be granted to unregistered users.
- host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount string
- Path of the enabled RADIUS auth backend mount to configure.
- secret
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret
Wo numberVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - alias
Metadata {[key: string]: string} - A map of string to string that will be set as metadata on the identity alias
- dial
Timeout number - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - namespace string
- Target namespace. (requires Enterprise)
- nas
Port number - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port number
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read
Timeout number - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - token
Bound string[]Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit numberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max numberTtl - The maximum lifetime of the generated token
- token
No booleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num numberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period number - Generated Token's Period
- token
Policies string[] - Generated Token's Policies
- token
Ttl number - The initial ttl of the token to generate in seconds
- token
Type string - The type of token to generate, service or batch
- unregistered
User string[]Policies - A set of policies to be granted to unregistered users.
- host str
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount str
- Path of the enabled RADIUS auth backend mount to configure.
- secret_
wo str - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret_
wo_ intversion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - alias_
metadata Mapping[str, str] - A map of string to string that will be set as metadata on the identity alias
- dial_
timeout int - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - namespace str
- Target namespace. (requires Enterprise)
- nas_
port int - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port int
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read_
timeout int - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - token_
bound_ Sequence[str]cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token_
explicit_ intmax_ ttl - Generated Token's Explicit Maximum TTL in seconds
- token_
max_ intttl - The maximum lifetime of the generated token
- token_
no_ booldefault_ policy - If true, the 'default' policy will not automatically be added to generated tokens
- token_
num_ intuses - The maximum number of times a token may be used, a value of zero means unlimited
- token_
period int - Generated Token's Period
- token_
policies Sequence[str] - Generated Token's Policies
- token_
ttl int - The initial ttl of the token to generate in seconds
- token_
type str - The type of token to generate, service or batch
- unregistered_
user_ Sequence[str]policies - A set of policies to be granted to unregistered users.
- host String
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount String
- Path of the enabled RADIUS auth backend mount to configure.
- secret
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret
Wo NumberVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - alias
Metadata Map<String> - A map of string to string that will be set as metadata on the identity alias
- dial
Timeout Number - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - namespace String
- Target namespace. (requires Enterprise)
- nas
Port Number - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port Number
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read
Timeout Number - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit NumberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max NumberTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num NumberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Number - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Number - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- unregistered
User List<String>Policies - A set of policies to be granted to unregistered users.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthBackend resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Nas
Identifier string - The NAS identifier field for the RADIUS authentication.
- Id string
- The provider-assigned unique ID for this managed resource.
- Nas
Identifier string - The NAS identifier field for the RADIUS authentication.
- id string
- The provider-assigned unique ID for this managed resource.
- nas_
identifier string - The NAS identifier field for the RADIUS authentication.
- id String
- The provider-assigned unique ID for this managed resource.
- nas
Identifier String - The NAS identifier field for the RADIUS authentication.
- id string
- The provider-assigned unique ID for this managed resource.
- nas
Identifier string - The NAS identifier field for the RADIUS authentication.
- id str
- The provider-assigned unique ID for this managed resource.
- nas_
identifier str - The NAS identifier field for the RADIUS authentication.
- id String
- The provider-assigned unique ID for this managed resource.
- nas
Identifier String - The NAS identifier field for the RADIUS authentication.
Look up Existing AuthBackend Resource
Get an existing AuthBackend resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AuthBackendState, opts?: CustomResourceOptions): AuthBackend@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alias_metadata: Optional[Mapping[str, str]] = None,
dial_timeout: Optional[int] = None,
host: Optional[str] = None,
mount: Optional[str] = None,
namespace: Optional[str] = None,
nas_identifier: Optional[str] = None,
nas_port: Optional[int] = None,
port: Optional[int] = None,
read_timeout: Optional[int] = None,
secret_wo: Optional[str] = None,
secret_wo_version: Optional[int] = None,
token_bound_cidrs: Optional[Sequence[str]] = None,
token_explicit_max_ttl: Optional[int] = None,
token_max_ttl: Optional[int] = None,
token_no_default_policy: Optional[bool] = None,
token_num_uses: Optional[int] = None,
token_period: Optional[int] = None,
token_policies: Optional[Sequence[str]] = None,
token_ttl: Optional[int] = None,
token_type: Optional[str] = None,
unregistered_user_policies: Optional[Sequence[str]] = None) -> AuthBackendfunc GetAuthBackend(ctx *Context, name string, id IDInput, state *AuthBackendState, opts ...ResourceOption) (*AuthBackend, error)public static AuthBackend Get(string name, Input<string> id, AuthBackendState? state, CustomResourceOptions? opts = null)public static AuthBackend get(String name, Output<String> id, AuthBackendState state, CustomResourceOptions options)resources: _: type: vault:radius:AuthBackend get: id: ${id}import {
to = vault_radius_auth_backend.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Alias
Metadata Dictionary<string, string> - A map of string to string that will be set as metadata on the identity alias
- Dial
Timeout int - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - Mount string
- Path of the enabled RADIUS auth backend mount to configure.
- Namespace string
- Target namespace. (requires Enterprise)
- Nas
Identifier string - The NAS identifier field for the RADIUS authentication.
- Nas
Port int - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Port int
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - Read
Timeout int - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Secret
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- Secret
Wo intVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - Token
Bound List<string>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies List<string> - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Unregistered
User List<string>Policies - A set of policies to be granted to unregistered users.
- Alias
Metadata map[string]string - A map of string to string that will be set as metadata on the identity alias
- Dial
Timeout int - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - Mount string
- Path of the enabled RADIUS auth backend mount to configure.
- Namespace string
- Target namespace. (requires Enterprise)
- Nas
Identifier string - The NAS identifier field for the RADIUS authentication.
- Nas
Port int - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Port int
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - Read
Timeout int - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - Secret
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- Secret
Wo intVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - Token
Bound []stringCidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- Token
Explicit intMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- Token
Max intTtl - The maximum lifetime of the generated token
- Token
No boolDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- Token
Num intUses - The maximum number of times a token may be used, a value of zero means unlimited
- Token
Period int - Generated Token's Period
- Token
Policies []string - Generated Token's Policies
- Token
Ttl int - The initial ttl of the token to generate in seconds
- Token
Type string - The type of token to generate, service or batch
- Unregistered
User []stringPolicies - A set of policies to be granted to unregistered users.
- alias_
metadata map(string) - A map of string to string that will be set as metadata on the identity alias
- dial_
timeout number - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount string
- Path of the enabled RADIUS auth backend mount to configure.
- namespace string
- Target namespace. (requires Enterprise)
- nas_
identifier string - The NAS identifier field for the RADIUS authentication.
- nas_
port number - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port number
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read_
timeout number - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - secret_
wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret_
wo_ numberversion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - token_
bound_ list(string)cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token_
explicit_ numbermax_ ttl - Generated Token's Explicit Maximum TTL in seconds
- token_
max_ numberttl - The maximum lifetime of the generated token
- token_
no_ booldefault_ policy - If true, the 'default' policy will not automatically be added to generated tokens
- token_
num_ numberuses - The maximum number of times a token may be used, a value of zero means unlimited
- token_
period number - Generated Token's Period
- token_
policies list(string) - Generated Token's Policies
- token_
ttl number - The initial ttl of the token to generate in seconds
- token_
type string - The type of token to generate, service or batch
- unregistered_
user_ list(string)policies - A set of policies to be granted to unregistered users.
- alias
Metadata Map<String,String> - A map of string to string that will be set as metadata on the identity alias
- dial
Timeout Integer - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - host String
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount String
- Path of the enabled RADIUS auth backend mount to configure.
- namespace String
- Target namespace. (requires Enterprise)
- nas
Identifier String - The NAS identifier field for the RADIUS authentication.
- nas
Port Integer - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port Integer
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read
Timeout Integer - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - secret
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret
Wo IntegerVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit IntegerMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max IntegerTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num IntegerUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Integer - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Integer - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- unregistered
User List<String>Policies - A set of policies to be granted to unregistered users.
- alias
Metadata {[key: string]: string} - A map of string to string that will be set as metadata on the identity alias
- dial
Timeout number - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - host string
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount string
- Path of the enabled RADIUS auth backend mount to configure.
- namespace string
- Target namespace. (requires Enterprise)
- nas
Identifier string - The NAS identifier field for the RADIUS authentication.
- nas
Port number - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port number
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read
Timeout number - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - secret
Wo string - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret
Wo numberVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - token
Bound string[]Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit numberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max numberTtl - The maximum lifetime of the generated token
- token
No booleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num numberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period number - Generated Token's Period
- token
Policies string[] - Generated Token's Policies
- token
Ttl number - The initial ttl of the token to generate in seconds
- token
Type string - The type of token to generate, service or batch
- unregistered
User string[]Policies - A set of policies to be granted to unregistered users.
- alias_
metadata Mapping[str, str] - A map of string to string that will be set as metadata on the identity alias
- dial_
timeout int - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - host str
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount str
- Path of the enabled RADIUS auth backend mount to configure.
- namespace str
- Target namespace. (requires Enterprise)
- nas_
identifier str - The NAS identifier field for the RADIUS authentication.
- nas_
port int - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port int
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read_
timeout int - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - secret_
wo str - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret_
wo_ intversion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - token_
bound_ Sequence[str]cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token_
explicit_ intmax_ ttl - Generated Token's Explicit Maximum TTL in seconds
- token_
max_ intttl - The maximum lifetime of the generated token
- token_
no_ booldefault_ policy - If true, the 'default' policy will not automatically be added to generated tokens
- token_
num_ intuses - The maximum number of times a token may be used, a value of zero means unlimited
- token_
period int - Generated Token's Period
- token_
policies Sequence[str] - Generated Token's Policies
- token_
ttl int - The initial ttl of the token to generate in seconds
- token_
type str - The type of token to generate, service or batch
- unregistered_
user_ Sequence[str]policies - A set of policies to be granted to unregistered users.
- alias
Metadata Map<String> - A map of string to string that will be set as metadata on the identity alias
- dial
Timeout Number - Number of seconds to wait for a backend connection before timing out. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - host String
- The RADIUS server to connect to. Examples:
radius.myorg.com,127.0.0.1. - mount String
- Path of the enabled RADIUS auth backend mount to configure.
- namespace String
- Target namespace. (requires Enterprise)
- nas
Identifier String - The NAS identifier field for the RADIUS authentication.
- nas
Port Number - The NAS-Port attribute of the RADIUS request. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - port Number
- The UDP port where the RADIUS server is listening on. Defaults to
1812. - read
Timeout Number - Number of seconds to wait for a response from the RADIUS server. Defaults to
10. If removed from configuration after being set, Vault retains the previously stored value. - secret
Wo String - NOTE: This field is write-only and its value will not be updated in state as part of read operations. The RADIUS shared secret. This is a write-only field and will not be read back from Vault.
- secret
Wo NumberVersion - Version counter for the write-only
secretWofield. Since write-only values are not stored in state, Terraform cannot detect when the secret changes. Increment this value whenever you updatesecretWoso Terraform detects the change and applies an update. - token
Bound List<String>Cidrs - Specifies the blocks of IP addresses which are allowed to use the generated token
- token
Explicit NumberMax Ttl - Generated Token's Explicit Maximum TTL in seconds
- token
Max NumberTtl - The maximum lifetime of the generated token
- token
No BooleanDefault Policy - If true, the 'default' policy will not automatically be added to generated tokens
- token
Num NumberUses - The maximum number of times a token may be used, a value of zero means unlimited
- token
Period Number - Generated Token's Period
- token
Policies List<String> - Generated Token's Policies
- token
Ttl Number - The initial ttl of the token to generate in seconds
- token
Type String - The type of token to generate, service or batch
- unregistered
User List<String>Policies - A set of policies to be granted to unregistered users.
Import
RADIUS auth backend configurations can be imported using the full config API path:
$ pulumi import vault:radius/authBackend:AuthBackend example auth/radius/config
$ pulumi import vault:radius/authBackend:AuthBackend example auth/my-radius/config
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vaultTerraform Provider.
published on Wednesday, Jul 22, 2026 by Pulumi