Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

variables.tf 656 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  1. variable "aws_region" {
  2. default = "us-east-1"
  3. }
  4. variable "aws_profile" {
  5. default = "default"
  6. }
  7. variable "ec2_key_name" {
  8. description = "EC2 key pair name"
  9. type = string
  10. }
  11. variable "db_password" {
  12. description = "Password for the RDS PostgreSQL instance"
  13. type = string
  14. sensitive = true
  15. }
  16. variable "artifact_bucket_name" {
  17. description = "Name of the S3 bucket for MLflow artifacts"
  18. type = string
  19. }
  20. variable "project" {
  21. description = "Project name or identifier"
  22. type = string
  23. }
  24. variable "environment" {
  25. type = string
  26. description = "Deployment environment (dev/prod)"
  27. default = "dev"
  28. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...