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

outputs.tf 337 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
  1. # existing outputs …
  2. output "ec2_public_ip" {
  3. value = aws_instance.ubuntu.public_ip
  4. }
  5. output "rds_endpoint" {
  6. value = aws_db_instance.mlflow_pg.endpoint
  7. }
  8. # NEW — forward streaming module outputs
  9. output "stream_name" {
  10. value = module.streaming.stream_name
  11. }
  12. output "lambda_name" {
  13. value = module.streaming.lambda_name
  14. }
Tip!

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

Comments

Loading...