Skip to content

Instantly share code, notes, and snippets.

@aveek22
Created February 21, 2023 20:32
Show Gist options
  • Select an option

  • Save aveek22/5a4da55745b936b8128c7ecbc8842fb9 to your computer and use it in GitHub Desktop.

Select an option

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