Skip to content

Commit cde5b21

Browse files
Updated Document
1 parent 1c1dbfd commit cde5b21

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ Inside the `variables.tf` or in `*.tfvars` file, you should define values for th
5757
3. **Use the Module in Your Main Configuration**
5858
In your main Terraform configuration file (e.g., main.tf), you can use the module. Specify the source of the module, and version, For Example
5959

60-
## Usage
6160

6261
```hcl
6362
module "ecs" {
@@ -251,6 +250,18 @@ You can append to this array by adding values to `var.additional_ssm_params`.
251250

252251
## Development
253252

253+
### Versioning
254+
255+
while Contributing or doing git commit please specify the breaking change in your commit message whether its major,minor or patch
256+
257+
For Example
258+
259+
```sh
260+
git commit -m "your commit message #major"
261+
```
262+
By specifying this , it will bump the version and if you don't specify this in your commit message then by default it will consider patch and will bump that accordingly
263+
264+
254265
### Prerequisites
255266

256267
- [terraform](https://learn.hashicorp.com/terraform/getting-started/install#installing-terraform)
@@ -266,17 +277,6 @@ You can append to this array by adding values to `var.additional_ssm_params`.
266277
pre-commit install
267278
```
268279

269-
### Git commits
270-
271-
while Contributing or doing git commit please specify the breaking change in your commit message whether its major,minor or patch
272-
273-
For Example
274-
275-
```sh
276-
git commit -m "your commit message #major"
277-
```
278-
By specifying this , it will bump the version and if you don't specify this in your commit message then by default it will consider patch and will bump that accordingly
279-
280280
### Tests
281281
- Tests are available in `test` directory
282282
- Configure the dependencies

0 commit comments

Comments
 (0)