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

main.tf 310 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
  1. # main.tf (optional)
  2. terraform {
  3. required_providers {
  4. aws = {
  5. source = "hashicorp/aws"
  6. version = "~> 5.0"
  7. }
  8. }
  9. }
  10. module "streaming" {
  11. source = "./modules/streaming"
  12. project = var.project
  13. s3_bucket = aws_s3_bucket.lambda_code.id
  14. s3_key = aws_s3_object.lambda_zip.key
  15. }
Tip!

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

Comments

Loading...