Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 1.22 KB

CONTRIBUTING.md

File metadata and controls

44 lines (38 loc) · 1.22 KB

Contributing

Please refer following link for contribution guidelines

Directory structure

The project has the following folders and files:

├── .github/
│   ├── workflows/
│   │   ├── workflow_file1.yml
│   │   ├── .../
├── README.md
├── versions.tf
├── variables.tf
├── main.tf
├── outputs.tf
├── module.yaml
├── .pre-commit-config.yaml
├── modules/
│   ├── nestedA/
│   │   ├── README.md
│   │   ├── variables.tf
│   │   ├── main.tf
│   │   ├── outputs.tf
│   ├── nestedB/
│   ├── .../
├── examples/
│   ├── exampleA/
│   │   ├── main.tf
│   ├── exampleB/
│   ├── .../
├── LICENSE
├── CONTRIBUTING.md
├── CHANGELOG.md
├── test/
│   ├── test_file1.go/
│   ├── .../

Please make sure you are changes are inline with directory structure mentined as above.

For more information on directory structure, design guidelines and contribution gudilines refer