1
0

feat: elasticache and inplace upgrade from redis to valkey

This commit is contained in:
xpk
2026-03-20 15:45:10 +08:00
parent 61f28b424d
commit 5e8df07654
4 changed files with 155 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
provider "aws" {
region = var.aws-region
default_tags {
tags = {
Environment = var.environment
Project = var.project
Application = var.application
TerraformDir = join("/", reverse(slice(reverse(split("/", path.cwd)), 0, 2)))
}
}
}
terraform {
required_version = ">= 1.11.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 6.0"
}
}
}