We recommend using Azure Native.
azure.redis.LinkedServer
Explore with Pulumi AI
Manages a Redis Linked Server (ie Geo Location)
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
example-primary:
type: azure:core:ResourceGroup
properties:
name: example-resources-primary
location: East US
example-primaryCache:
type: azure:redis:Cache
name: example-primary
properties:
name: example-cache1
location: ${["example-primary"].location}
resourceGroupName: ${["example-primary"].name}
capacity: 1
family: P
skuName: Premium
enableNonSslPort: false
redisConfiguration:
maxmemoryReserved: 2
maxmemoryDelta: 2
maxmemoryPolicy: allkeys-lru
example-secondary:
type: azure:core:ResourceGroup
properties:
name: example-resources-secondary
location: West US
example-secondaryCache:
type: azure:redis:Cache
name: example-secondary
properties:
name: example-cache2
location: ${["example-secondary"].location}
resourceGroupName: ${["example-secondary"].name}
capacity: 1
family: P
skuName: Premium
enableNonSslPort: false
redisConfiguration:
maxmemoryReserved: 2
maxmemoryDelta: 2
maxmemoryPolicy: allkeys-lru
example-link:
type: azure:redis:LinkedServer
properties:
targetRedisCacheName: ${["example-primaryCache"].name}
resourceGroupName: ${["example-primaryCache"].resourceGroupName}
linkedRedisCacheId: ${["example-secondaryCache"].id}
linkedRedisCacheLocation: ${["example-secondaryCache"].location}
serverRole: Secondary
Create LinkedServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LinkedServer(name: string, args: LinkedServerArgs, opts?: CustomResourceOptions);
@overload
def LinkedServer(resource_name: str,
args: LinkedServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LinkedServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
linked_redis_cache_id: Optional[str] = None,
linked_redis_cache_location: Optional[str] = None,
resource_group_name: Optional[str] = None,
server_role: Optional[str] = None,
target_redis_cache_name: Optional[str] = None)
func NewLinkedServer(ctx *Context, name string, args LinkedServerArgs, opts ...ResourceOption) (*LinkedServer, error)
public LinkedServer(string name, LinkedServerArgs args, CustomResourceOptions? opts = null)
public LinkedServer(String name, LinkedServerArgs args)
public LinkedServer(String name, LinkedServerArgs args, CustomResourceOptions options)
type: azure:redis:LinkedServer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LinkedServerArgs
- 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 LinkedServerArgs
- 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 LinkedServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LinkedServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LinkedServerArgs
- 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 linkedServerResource = new Azure.Redis.LinkedServer("linkedServerResource", new()
{
LinkedRedisCacheId = "string",
LinkedRedisCacheLocation = "string",
ResourceGroupName = "string",
ServerRole = "string",
TargetRedisCacheName = "string",
});
example, err := redis.NewLinkedServer(ctx, "linkedServerResource", &redis.LinkedServerArgs{
LinkedRedisCacheId: pulumi.String("string"),
LinkedRedisCacheLocation: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ServerRole: pulumi.String("string"),
TargetRedisCacheName: pulumi.String("string"),
})
var linkedServerResource = new LinkedServer("linkedServerResource", LinkedServerArgs.builder()
.linkedRedisCacheId("string")
.linkedRedisCacheLocation("string")
.resourceGroupName("string")
.serverRole("string")
.targetRedisCacheName("string")
.build());
linked_server_resource = azure.redis.LinkedServer("linkedServerResource",
linked_redis_cache_id="string",
linked_redis_cache_location="string",
resource_group_name="string",
server_role="string",
target_redis_cache_name="string")
const linkedServerResource = new azure.redis.LinkedServer("linkedServerResource", {
linkedRedisCacheId: "string",
linkedRedisCacheLocation: "string",
resourceGroupName: "string",
serverRole: "string",
targetRedisCacheName: "string",
});
type: azure:redis:LinkedServer
properties:
linkedRedisCacheId: string
linkedRedisCacheLocation: string
resourceGroupName: string
serverRole: string
targetRedisCacheName: string
LinkedServer Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The LinkedServer resource accepts the following input properties:
- Linked
Redis stringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- Linked
Redis stringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- Resource
Group stringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- Server
Role string - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - Target
Redis stringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- Linked
Redis stringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- Linked
Redis stringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- Resource
Group stringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- Server
Role string - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - Target
Redis stringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- linked
Redis StringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked
Redis StringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- resource
Group StringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server
Role String - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target
Redis StringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- linked
Redis stringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked
Redis stringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- resource
Group stringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server
Role string - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target
Redis stringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- linked_
redis_ strcache_ id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked_
redis_ strcache_ location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- resource_
group_ strname - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server_
role str - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target_
redis_ strcache_ name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- linked
Redis StringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked
Redis StringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- resource
Group StringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server
Role String - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target
Redis StringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
Outputs
All input properties are implicitly available as output properties. Additionally, the LinkedServer resource produces the following output properties:
- Geo
Replicated stringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the linked server.
- Geo
Replicated stringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the linked server.
- geo
Replicated StringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the linked server.
- geo
Replicated stringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the linked server.
- geo_
replicated_ strprimary_ host_ name - The geo-replicated primary hostname for this linked server.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the linked server.
- geo
Replicated StringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the linked server.
Look up Existing LinkedServer Resource
Get an existing LinkedServer 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?: LinkedServerState, opts?: CustomResourceOptions): LinkedServer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
geo_replicated_primary_host_name: Optional[str] = None,
linked_redis_cache_id: Optional[str] = None,
linked_redis_cache_location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
server_role: Optional[str] = None,
target_redis_cache_name: Optional[str] = None) -> LinkedServer
func GetLinkedServer(ctx *Context, name string, id IDInput, state *LinkedServerState, opts ...ResourceOption) (*LinkedServer, error)
public static LinkedServer Get(string name, Input<string> id, LinkedServerState? state, CustomResourceOptions? opts = null)
public static LinkedServer get(String name, Output<String> id, LinkedServerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Geo
Replicated stringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- Linked
Redis stringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- Linked
Redis stringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- Name string
- The name of the linked server.
- Resource
Group stringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- Server
Role string - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - Target
Redis stringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- Geo
Replicated stringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- Linked
Redis stringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- Linked
Redis stringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- Name string
- The name of the linked server.
- Resource
Group stringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- Server
Role string - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - Target
Redis stringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- geo
Replicated StringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- linked
Redis StringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked
Redis StringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- name String
- The name of the linked server.
- resource
Group StringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server
Role String - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target
Redis StringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- geo
Replicated stringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- linked
Redis stringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked
Redis stringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- name string
- The name of the linked server.
- resource
Group stringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server
Role string - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target
Redis stringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- geo_
replicated_ strprimary_ host_ name - The geo-replicated primary hostname for this linked server.
- linked_
redis_ strcache_ id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked_
redis_ strcache_ location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- name str
- The name of the linked server.
- resource_
group_ strname - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server_
role str - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target_
redis_ strcache_ name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
- geo
Replicated StringPrimary Host Name - The geo-replicated primary hostname for this linked server.
- linked
Redis StringCache Id - The ID of the linked Redis cache. Changing this forces a new Redis to be created.
- linked
Redis StringCache Location - The location of the linked Redis cache. Changing this forces a new Redis to be created.
- name String
- The name of the linked server.
- resource
Group StringName - The name of the Resource Group where the Redis caches exists. Changing this forces a new Redis to be created.
- server
Role String - The role of the linked Redis cache (eg "Secondary"). Changing this forces a new Redis to be created. Possible values are
Primary
andSecondary
. - target
Redis StringCache Name - The name of Redis cache to link with. Changing this forces a new Redis to be created. (eg The primary role)
Import
Redis can be imported using the resource id
, e.g.
$ pulumi import azure:redis/linkedServer:LinkedServer example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Cache/redis/cache1/linkedServers/cache2
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.