infrastructure-as-code/openstack-tf/d4s-production/accounting-dashboard-db/variables.tf

13 lines
360 B
Terraform
Raw Normal View History

2024-05-28 16:30:27 +02:00
#Accounting Dashboard DB variables
2024-05-28 10:39:46 +02:00
variable "accounting_dashboard_db_data" {
type = map(string)
default = {
name = "accounting-dashboard-db-server"
flavor = "m1.medium"
vol_data_name = "accounting-dashboard-db-data"
vol_data_size = "10"
2024-05-28 16:30:27 +02:00
vol_data_device = "/dev/vdb"
server_ip = "192.168.0.10"
2024-05-28 10:39:46 +02:00
}
}