12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- variable "aws_access_key" {
- type = string
- description = "AWS access key"
- }
- variable "aws_secret_key" {
- type = string
- description = "AWS secret key"
- }
- variable "aws_region" {
- type = string
- description = "AWS region"
- default = "cn-north-1"
- }
- variable "name_prefix" {
- type = string
- description = "Name prefix for all resources"
- default = "dolphinscheduler"
- }
- variable "tags" {
- type = map(string)
- description = "Tags to apply to all resources"
- default = {
- "Deployment" = "Test"
- }
- }
|