Skip to content

Instantly share code, notes, and snippets.

@aveek22
Created February 21, 2023 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveek22/5a4da55745b936b8128c7ecbc8842fb9 to your computer and use it in GitHub Desktop.
Save aveek22/5a4da55745b936b8128c7ecbc8842fb9 to your computer and use it in GitHub Desktop.
module "s3_main_bucket" {
source = "./modules/main-bucket"
}
module "s3_dependent_bucket" {
source = "./modules/dependent-bucket"
depends_on = [
module.s3_main_bucket
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment