2020 Journey
So, this is my second Hacktoberfest participation. On 2020 I participated for the first time and it was a great experience towards Open source platforms.
With the same thrill, here I almost completed my 2021 hacktoberfest π - Just waiting for standard 14 days review waiting period to get over.
2021 Story so far
Before October I did my first contribution to azure terraform
hashicorp / terraform-provider-azurerm
Terraform provider for Azure Resource Manager
Terraform Provider for Azure (Resource Manager)
The AzureRM Terraform Provider allows managing resources within Azure Resource Manager.
When using version 4.0 of the AzureRM Provider we recommend using the latest version of Terraform Core (the latest version can be found here).
- Terraform Website
- AzureRM Provider Documentation
- AzureRM Provider Usage Examples
- Slack Workspace for Contributors (Request Invite)
Usage Example
# 1. Specify the version of the AzureRM Provider to use
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.0.1"
}
}
}
# 2. Configure the AzureRM Provider
provider "azurerm" {
# The AzureRM Provider supports authenticating using via the Azure CLI, a Managed Identity
# and a Service Principal. More information on the authentication methods supported by
# the AzureRM Provider can be found here:
# https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs#authenticating-to-azure
# The features block allows changing the behaviour of the Azure
β¦which made me a special impression towards their community members and maintainers. So, I thought of using this hacktoberfest opportunity to contribute more to azure terraform.
Unfortunately my knowledge with Go language is not that goodπ But I donβt want that to stop my interest towards contribution. So, I went to their issues and start searching for the good first issues
and documentation
labels.
Then I started fixing the issues by raising a couple of small PRs, which was merged quickly π. Then I found a great step-back π±, unfortunately azure terraform repo is not participated in the Hacktoberfest event π. But the maintainers helped me to get my PR's eligible for Hacktoberfest π€. See the community love β₯
This motivates me to complete my final 2 PR's π
Here is my 4 simple PR's which fixes 4 simple existing issues
Fixing #13481 #13675
Fixing #13481
This should be required field as per https://github.com/hashicorp/terraform-provider-azurerm/blob/main/internal/services/batch/batch_pool_resource.go#L415
Fix 10822 #13599
Fix the case sensitive bug in docs Fix https://github.com/hashicorp/terraform-provider-azurerm/issues/10822
fixing issue #13563 #13592
Added the missing id references
Fix for https://github.com/hashicorp/terraform-provider-azurerm/issues/13563
One of the interesting fact is I'm the only one who complete 4 PR's that were labeled hacktoberfest-accepted
on the terraform-provider-azurerm
project π
With all this I got the official mail of completion π
Top comments (0)