module 2개 사용 (1) 썸네일형 리스트형 테라폼 모듈을 2개 사용하는 방법 When you declare modules as follows in ./main.tf: module "networking" { source = "./modules/networking" } module "security" { source = "./modules/security" } The references to module.networking and module.security are only in scope for local variables, resources, data sources, outputs, and expressions in TF files in the same directory (./*.tf in this case). Since ./modules/security/security.tf i.. 이전 1 다음