Skip to content

Commit

Permalink
Updated Document
Browse files Browse the repository at this point in the history
  • Loading branch information
manikanta-sadurla committed Feb 9, 2024
1 parent 1c1dbfd commit cde5b21
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ Inside the `variables.tf` or in `*.tfvars` file, you should define values for th
3. **Use the Module in Your Main Configuration**
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

## Usage

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

## Development

### Versioning

while Contributing or doing git commit please specify the breaking change in your commit message whether its major,minor or patch

For Example

```sh
git commit -m "your commit message #major"
```
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


### Prerequisites

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

### Git commits

while Contributing or doing git commit please specify the breaking change in your commit message whether its major,minor or patch

For Example

```sh
git commit -m "your commit message #major"
```
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
### Tests
- Tests are available in `test` directory
- Configure the dependencies
Expand Down

0 comments on commit cde5b21

Please sign in to comment.