Files
iac_demo/.continue/rules/module-dependency-best-practices.md
T
2025-11-10 06:48:33 +00:00

362 B

globs, description, alwaysApply
globs description alwaysApply
**/*.tf When a module depends on another module, it should only reference the outputs of that module, not its internal resources or variables. This promotes loose coupling and better maintainability. true

Avoid tight coupling between modules by having one module depend on another's internal implementation details