mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-14 13:01:34 -04:00
1.4 KiB
1.4 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| aws | AWS: aws_elasticache_security_group | docs-aws-resource-elasticache-security-group | Provides an ElastiCache Security Group to control access to one or more cache clusters. |
aws_elasticache_security_group
Provides an ElastiCache Security Group to control access to one or more cache clusters.
~> NOTE: ElastiCache Security Groups are for use only when working with an ElastiCache cluster outside of a VPC. If you are using a VPC, see the ElastiCache Subnet Group resource.
Example Usage
resource "aws_security_group" "bar" {
name = "security-group"
description = "security group"
}
resource "aws_elasticache_security_group" "bar" {
name = "elasticache-security-group"
description = "elasticache security group"
security_group_names = ["${aws_security_group.bar.name}"]
}
Argument Reference
The following arguments are supported:
description– (Required) description for the cache security groupname– (Required) Name for the cache security group. This value is stored as a lowercase stringsecurity_group_names– (Required) List of EC2 security group names to be authorized for ingress to the cache security group
Attributes Reference
The following attributes are exported:
descriptionnamesecurity_group_names