github.com/opentofu/opentofu@v1.7.1/CONTRIBUTING.md (about)

     1  # Contributing to OpenTofu
     2  
     3  Welcome and thank you for wanting to contribute! 
     4  
     5  ## Get started
     6  
     7  - Have a question? Post it in [GitHub Discussions ➡️](https://github.com/orgs/opentofu/discussions) or on the [OpenTofu Slack ➡️](https://opentofu.org/slack/)!
     8  - Found a bug? [Report it here ➡️](https://github.com/opentofu/opentofu/issues/new?assignees=&labels=bug%2Cpending-decision&projects=&template=bug_report.yml)
     9  - Have a feature idea? [Submit it here ➡️](https://github.com/opentofu/opentofu/issues/new?assignees=&labels=enhancement%2Cpending-decision&projects=&template=feature_request.yml)
    10  - Want to provide detailed documentation on a feature idea? [Write an RFC here ➡️](https://github.com/opentofu/opentofu/issues/new?assignees=&labels=rfc%2Cpending-decision&projects=&template=rfc.yml)
    11  - Want to provide a proof-of-concept for an issue? Please [submit a draft PR here ➡️](https://github.com/opentofu/opentofu/compare)
    12  - Want to add a feature, fix a linter error, refactor something, or add CI tooling?
    13    1. Check if there is an [open issue with the `accepted` label](https://github.com/opentofu/opentofu/issues?q=is%3Aopen+is%3Aissue+label%3Aaccepted),
    14    2. Comment on the issue that you want to work on it,
    15    3. Wait for a maintainer to assign it to you,
    16    4. Then [submit your code here ➡️](https://github.com/opentofu/opentofu/compare)
    17  - Want to fix a bug? [Submit a PR here ➡️](https://github.com/opentofu/opentofu/compare)
    18  - Want to know what's going on? Read the [weekly updates ➡️](WEEKLY_UPDATES.md), the [TSC summary ➡️](TSC_SUMMARY.md) or join the [community meetings ➡️](https://meet.google.com/xfm-cgms-has) on Wednesdays at 14:30 CET / 8:30 AM Eastern / 5:30 AM Western / 19:00 India time on this link: https://meet.google.com/xfm-cgms-has ([📅 calendar link](https://calendar.google.com/calendar/event?eid=NDg0aWl2Y3U1aHFva3N0bGhyMHBhNzdpZmsgY18zZjJkZDNjMWZlMGVmNGU5M2VmM2ZjNDU2Y2EyZGQyMTlhMmU4ZmQ4NWY2YjQwNzUwYWYxNmMzZGYzNzBiZjkzQGc))
    19  
    20  > [!TIP]
    21  > For more OpenTofu events, subscribe to the [OpenTofu Events Calendar](https://calendar.google.com/calendar/embed?src=c_3f2dd3c1fe0ef4e93ef3fc456ca2dd219a2e8fd85f6b40750af16c3df370bf93%40group.calendar.google.com)!
    22  
    23  **⚠️ Important:** Please avoid working on features or refactor without [an `accepted` issue](https://github.com/opentofu/opentofu/issues?q=is%3Aopen+is%3Aissue+label%3Aaccepted). OpenTofu is a large and complex project and every change needs careful consideration. We cannot merge non-bug pull requests without first having a discussion about them, no matter how trivial the issue may seem.
    24  
    25  We specifically do not merge PRs **without prior issues** that:
    26  
    27  - Reformat code
    28  - Rename things
    29  - Move code around
    30  - Fix linter warnings for tools not currently in the CI pipeline
    31  - Add new CI tooling
    32  
    33  ---
    34  
    35  ## Writing code for OpenTofu
    36  
    37  Eager to get started on coding? Here's the short version:
    38  
    39  1. Set up a Go development environment with Git.
    40  2. Pay attention to copyright: [please read the DCO](https://developercertificate.org/), write the code yourself, avoid copy/paste. Disable or limit your AI coding assistant.
    41  3. Run the tests with `go test` in the package you are working on.
    42  4. Build OpenTofu by running `go build ./cmd/tofu`.
    43  5. Update [the changelog](CHANGELOG.md).
    44  6. When you commit, use `git commit -s` to sign off your commits.
    45  
    46  ---
    47  
    48  ### Setting up your development environment
    49  
    50  You can develop OpenTofu on any platform you like. However, we recommend either a Linux (including WSL on Windows) or a macOS build environment. You will need [Go](https://golang.org/) and [Git](https://git-scm.com/) installed, and we recommend an IDE to help you with code completion and code quality warnings. (We recommend installing the Go version documented in the [.go-version](.go-version) file.)
    51  
    52  Alternatively, if you use Visual Studio Code or Goland/IntelliJ and have Docker or Podman installed, you can also use a [devcontainer](.devcontainer.json). In Visual Studio Code, you can install the [Remote Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers), then reopen the project to get a prompt about activating the devcontainer. In Goland/Intellij, open the `.devcontainers.json` file and click the purple cube icon that appears next to the line numbers to activate the dev container. At this point you can proceed as if you were [building natively](#building-natively) on Linux.
    53  
    54  ---
    55  
    56  ### Building OpenTofu
    57  
    58  There are two ways to build OpenTofu: natively and in a container. Building natively means you are building directly where your code is located without dynamically creating a container. In contrast, building in a container means you are using a build container to run the build process only.
    59  
    60  #### Building natively
    61  
    62  To build OpenTofu natively, you will need to install Go in the environment you are running in. You can then run the `go build` command from your OpenTofu source directory as follows:
    63  
    64  ```sh
    65  GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o tofu -v -buildvcs=false ./cmd/tofu
    66  ```
    67  
    68  This command will produce a `tofu` binary in your current directory, which you can test by running `./tofu --version`.
    69  
    70  > [!TIP]
    71  > Replace the `GOOS` and `GOARCH` values with your target platform if you wish to cross-compile. You can find more information in the [Go documentation](https://pkg.go.dev/cmd/go#hdr-Compile_and_run_Go_program).
    72  
    73  > [!NOTE]
    74  > We build with the `CGO_ENABLED=0` environment variable on almost all platforms. The only exception is macOS/Darwin to avoid DNS resolution issues.
    75  
    76  #### Building in a container
    77  
    78  If you have Docker or a compatible alternative installed, you can run the entire build process in a container too:
    79  
    80  ```sh
    81  docker run \
    82    --rm \
    83    -v "$PWD":/usr/src/opentofu\
    84    -w /usr/src/opentofu golang:1.21.3\
    85    GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o tofu -v -buildvcs=false ./cmd/tofu
    86  ```
    87  
    88  This will create the `tofu` binary in the current working directory, which you can test by running `./tofu --version`.
    89  
    90  ---
    91  
    92  ### Running tests
    93  
    94  Similar to builds, you can use the `go test` command to run tests. To run the entire test suite, please run the following command in your OpenTofu source directory:
    95  
    96  ```sh
    97  go test ./...
    98  ```
    99  
   100  Alternatively, you can also run the `go test` command in the package you are currently working on:
   101  
   102  ```
   103  go test ./internal/command/...
   104  go test ./internal/addrs
   105  ```
   106  
   107  > [!TIP]
   108  > You can find more information on testing in the [Go documentation](https://pkg.go.dev/cmd/go#hdr-Test_packages).
   109  
   110  ---
   111  
   112  ### Debugging OpenTofu
   113  
   114  We recommend using an interactive debugger for finding issues quickly. Most IDE's have a built-in option for this, but you can also set up [dlv](https://github.com/go-delve/delve) on a remote machine for debugging. You can use the [`debug-opentofu`](scripts/debug-opentofu) script to run OpenTofu in debug mode. You can then connect the remote machine on port 2345 for debugging.
   115  
   116  For VSCode, add the following setting to `.vscode/launch.json` for easy debugging:
   117  
   118  ```json5
   119  {
   120      // Use IntelliSense to learn about possible attributes.
   121      // Hover to view descriptions of existing attributes.
   122      // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
   123      "version": "0.2.0",
   124      "configurations": [
   125          {
   126              "name": "tofu init",
   127              "type": "go",
   128              "request": "launch",
   129              "mode": "debug",
   130              "program": "${workspaceFolder}/cmd/tofu",
   131              // You can update the environment variables here
   132              // For more information, visit: https://opentofu.org/docs/cli/config/environment-variables/
   133              "env": {
   134                  "TF_LOG": "trace"
   135              },
   136              // You can update your arguments for init command here
   137              // Comment out the following line and update your workdir to target
   138              // "args": ["-chdir=<WORKDIR>", "init"]
   139              "args": ["init"]
   140          },
   141          {
   142              "name": "tofu plan",
   143              "type": "go",
   144              "request": "launch",
   145              "mode": "debug",
   146              "program": "${workspaceFolder}/cmd/tofu",
   147              "env": {
   148                  "TF_LOG": "trace"
   149              },
   150              // You can update your arguments for plan command here
   151              // Comment out the following line and update your workdir to target
   152              // "args": ["-chdir=<WORKDIR>", "plan"]
   153              "args": ["plan"]
   154          }
   155      ]
   156  }
   157  ```
   158  
   159  Similarly, you can add the following configurations to you `.idea/runConfigurations` folder if you use Goland/IntelliJ:
   160  
   161  ```xml
   162  <!-- .idea/runConfigurations/tofu_init.xml -->
   163  <component name="ProjectRunConfigurationManager">
   164    <configuration default="false" name="tofu init" type="GoApplicationRunConfiguration" factoryName="Go Application">
   165      <module name="opentofu" />
   166      <working_directory value="$PROJECT_DIR$" />
   167      <parameters value="init" />
   168      <kind value="DIRECTORY" />
   169      <package value="github.com/opentofu/opentofu/cmd/tofu" />
   170      <directory value="$PROJECT_DIR$/cmd/tofu" />
   171      <filePath value="$PROJECT_DIR$" />
   172      <method v="2" />
   173    </configuration>
   174  </component>
   175  ```
   176  
   177  ```xml
   178  <!-- .idea/runConfigurations/tofu_plan.xml -->
   179  <component name="ProjectRunConfigurationManager">
   180    <configuration default="false" name="tofu plan" type="GoApplicationRunConfiguration" factoryName="Go Application">
   181      <module name="opentofu" />
   182      <working_directory value="$PROJECT_DIR$" />
   183      <parameters value="plan" />
   184      <kind value="DIRECTORY" />
   185      <package value="github.com/opentofu/opentofu/cmd/tofu" />
   186      <directory value="$PROJECT_DIR$/cmd/tofu" />
   187      <filePath value="$PROJECT_DIR$" />
   188      <method v="2" />
   189    </configuration>
   190  </component>
   191  ```
   192  
   193  In addition to interactive debugging, you can also use [go-spew](https://github.com/davecgh/go-spew) to print complex data structures while running the code.
   194  
   195  ---
   196  
   197  ### Updating the changelog
   198  
   199  We are keeping track of the changes to OpenTofu in the [CHANGELOG.md](CHANGELOG.md) file. Please update it when you add features or fix bugs in OpeTofu.
   200  
   201  ---
   202  
   203  ### Signing off your commits
   204  
   205  When you contribute code to OpenTofu, we require you to add a [Developer Certificate of Origin](https://developercertificate.org/) sign-off. Please read the DCO carefully before you proceed and only contribute code you have written yourself. Please do not add code that you have not written from scratch yourself without discussing it in the related issue first.
   206  
   207  The simplest way to add a sign-off is to use the `-s` command when you commit:
   208  
   209  ```
   210  git commit -s -m "My commit message"
   211  ```
   212  
   213  > [!IMPORTANT]
   214  > Make sure your `user.name` and `user.email` setting in Git matches your GitHub settings. This will allow the automated DCO check to pass and avoid delays when merging your PR.
   215  
   216  > [!TIP]
   217  > Have you forgotten your sign-off? Click the "details" button on the failing DCO check for a guide on how to fix it!
   218  
   219  ---
   220  
   221  ### A note on copyright
   222  
   223  We take copyright and intellectual property very seriously. A few quick rules should help you:
   224  
   225  1. When you submit a PR, you are responsible for the code in that pull request. You signal your acceptance of the [DCO](https://developercertificate.org/) with your sign-off.
   226  2. If you include code in your PR that you didn't write yourself, make sure you have permission from the author. If you have permission, always add the `Co-authored-by` sign-off to your commits to indicate the author of the code you are adding.
   227  3. Be careful about AI coding assistants! Coding assistants based on large language models (LLMs), such as ChatGPT or GitHub Copilot, are awesome tools to help. However, in the specific case of OpenTofu the training data may include the BSL-licensed Terraform. Since the OpenTofu/Terraform codebase is very specific and LLMs don't have any other training sources, they may emit copyrighted code. Please avoid using LLM-based coding assistants as much as possible.
   228  4. When you copy/paste code from within the OpenTofu code, always make it explicit where you copied from. This helps us resolve issues later on.
   229  5. Before you copy code from external sources, make sure that the license allows this. Also make sure that any licensing requirements, such as attribution, are met. When in doubt, ask first!
   230  6. Specifically, do not copy from the Terraform repository, or any PRs others have filed against that repository. This code is licensed under the BSL, a license which is not compatible with OpenTofu. (You may submit the same PR to both Terraform and OpenTofu as long as you are the author of both.)
   231  
   232  > [!WARNING]
   233  > To protect the OpenTofu project from legal issues violating these rules will immediately disqualify your PR from being merged and you from working on that area of the OpenTofu code base in the future. Repeat violations may get you barred from contributing to OpenTofu. 
   234  
   235  ---
   236  
   237  ## Advanced topics
   238  
   239  ### Acceptance Tests: Testing interactions with external services
   240  
   241  The test command above only runs the self-contained tests that run without external services. There are, however, some optional tests in the OpenTofu CLI codebase that *do* interact with external services. We collectively refer to them as "acceptance tests".
   242  
   243  You can enable these by setting the environment variable `TF_ACC=1` when running the tests. We recommend focusing only on the specific package you are working on when enabling acceptance tests, both because it can help the test run to complete faster and because you are less likely to encounter failures due to drift in systems unrelated to your current goal:
   244  
   245  ```
   246  TF_ACC=1 go test ./internal/initwd
   247  ```
   248  
   249  ---
   250  
   251  ### Integration Tests: Testing interactions with external backends
   252  
   253  OpenTofu supports various [backends](https://opentofu.org/docs/language/settings/backends/configuration). We run integration test against them to ensure no side effects when using OpenTofu.
   254  
   255  Execute to list all available commands to run tests:
   256  
   257  ```commandline
   258  make list-integration-tests
   259  ```
   260  
   261  From the list of output commands, you can execute those which involve backends you intend to test against.
   262  
   263  For example, execute the command to run integration tests with s3 backend:
   264  
   265  ```commandline
   266  make test-s3
   267  ```
   268  
   269  ---
   270  
   271  ### Generated Code
   272  
   273  Some files in the OpenTofu CLI codebase are generated. In most cases, we update these using `go generate`, which is the standard way to encapsulate code generation steps in a Go codebase.
   274  
   275  ```
   276  go generate ./...
   277  ```
   278  
   279  Use `git diff` afterward to inspect the changes and ensure that they are what you expected.
   280  
   281  OpenTofu includes generated Go stub code for the OpenTofu provider plugin protocol, which is defined using Protocol Buffers. Because the Protocol Buffers tools are not written in Go and thus cannot be automatically installed using `go get`, we follow a different process for generating these, which requires that you've already installed a suitable version of `protoc`:
   282  
   283  ```
   284  make protobuf
   285  ```
   286  
   287  ---
   288  
   289  ### Adding or updating dependencies
   290  
   291  If you need to add or update dependencies, you'll have to make sure they use only approved and compatible licenses. The list of these licenses is defined in [`.licensei.toml`](.licensei.toml).
   292  
   293  To help verifying this in local development environment and in continuous integration, we use the [licensei](https://github.com/goph/licensei) open source tool.
   294  
   295  After modifying `go.mod` or `go.sum` files, you can run it manually with:
   296  
   297  ```
   298  export GITHUB_TOKEN=changeme
   299  make license-check
   300  ```
   301  
   302  Note: you need to define the `GITHUB_TOKEN` environment variable to a valid GitHub personal access token, or you will hit rate limiting from the GitHub API which `licensei` uses to discover the licenses of dependencies.
   303  
   304  ---
   305  
   306  ### Backporting
   307  
   308  All changes to OpenTofu should, by default, go into the `main` branch. When a fix is important enough, it will be backported to a version branch and release when the next minor release rolls around.
   309  
   310  Start the backporting process by making sure both the `main` and the target version branch are up-to-date in your working copy. Look up the commit ID of the commit and then switch to your target version branch. Now create a new branch from that version branch:
   311  
   312  ```sh
   313  git checkout -b backports/ISSUE_NUMBER
   314  ```
   315  
   316  Now you can cherry-pick the commit in question to your backport branch:
   317  
   318  ```sh
   319  git cherry-pick -s COMMIT_ID_HERE
   320  ```
   321  
   322  Finally, create an additional commit to edit the changelog and send in your PR. 
   323  
   324  ---
   325  
   326  ## FAQ
   327  
   328  ### Who decides if a feature will be implemented and how is that decision made?
   329  
   330  When you submit an enhancement request, the [core team](#who-is-the-core-team) looks at your issue first. Given the size of the code, adding a new feature is always a careful balancing act. The core team takes the following points into consideration:
   331  
   332  1. **Is it possible to implement this on a technical level?**<br />Sometimes, even if a feature would be extremely useful, the state of the codebase doesn't let us do it. 
   333  2. **Does the feature cause more technical debt?**<br />A feature request may hide a larger issue under the hood. Sometimes it is more desirable to resolve the underlying issue instead of implementing the feature in isolation.
   334  3. **Is there someone who would do the work?**<br />The core team doesn't have the capacity to implement everything, so for many issues community contributions are very welcome. Sometimes companies external to OpenTofu decide to dedicate developers for the development of a specific larger feature, which can also weigh in on the decision-making process.
   335  4. **Is there enough capacity on the core team to support a community contributor?**<br />Core engineers dedicate time to review PRs and help community members with questions as we don't expect contributors to implement the entire feature in isolation. We actively participate with planning, reviews and writing documentation as needed, some more than others, which flows into the decision of accepting or rejecting an issue. 
   336  5. **Does this feature enable someone to do something new with OpenTofu they were not able to do before?**<br />We prioritize work based on community input and need. An issue with a large number of reactions is more likely to make it into the accepted phase, but if a viable workaround or tool exists, the feature is less likely to be accepted. If a feature is just the integration of a cool technology, but doesn't solve any problems for a large number of people, it will be rejected.
   337  
   338  Depending on the core team's review, a feature request can have the following outcomes:
   339  
   340  1. **The feature is accepted for development by the core team.** This means that the core team will schedule it for an upcoming release and develop it.
   341  2. **The feature is accepted and open for community contributions.** The core team adds a `help wanted` label and waits for community volunteers to develop it.
   342  3. **More information is needed.** The core team will either add questions in comments, or when there is a deep technical issue to be resolved, call for an RFC to detail a possible implementation.
   343  4. **More community input is needed.** When an issue is, on its surface, valuable, but there is no track record of a large portion of the community needing it, the core team adds the `needs community input` label. If you are interested in the feature and would like to use it, please add a reaction to the issue and add a description on specifically what problem it would solve for you in a comment.
   344  5. **The feature is rejected.** If based on the criteria above it is not feasible to implement the feature, the core team closes the issue with an explanation why it is being closed.
   345  6. **The feature is referred to the Technical Steering Committee**. If the feature requires the commitment of a larger amount of core developer time, has legal implications, or otherwise requires leadership attention, the core team adds the feature to the agenda of the Technical Leadership Committee. Once decided, the TSC records the decision in the [TSC_SUMMARY.md](TSC_SUMMARY.md) file.
   346  
   347  ---
   348  
   349  ### I've been assigned an issue, now what?
   350  
   351  First of all, thank you for volunteering! Before you begin coding, please take a minute to answer the following questions:
   352  
   353  1. **Is the issue clear enough? Do you know what the expected outcome is?** Sometimes, issues are not as clear as they should be. If the issue is unclear, please let us know in the `#dev-general` channel on the [OpenTofu Slack](https://opentofu.org/slack/) so a core team member can clarify it.
   354  2. **What's your timeline for implementing the issue?** Please communicate how much time you estimate you'll need. We ask for this to avoid issues staying assigned to an inactive community member and blocking other contributors. However, if you find out you'll need more time, please feel free to comment on the issue and we'll leave the issue assigned to you.
   355  3. **Do you have questions about parts of the OpenTofu codebase?** Please post in `#dev-general` on the [OpenTofu Slack](https://opentofu.org/slack/) for a quick answer. (Please avoid DMs as the person you are DM'ing may not be available or know the answer.)
   356  4. **Do you have experience writing tests?** All of our code-related PR's need adequate tests. Please [familiarize yourself with testing in Go](https://go.dev/doc/tutorial/add-a-test).
   357  5. **Have you read this document?** If not, please give it a quick skim, especially the sections about copyright and signoffs. 
   358  
   359  ---
   360  
   361  ### What do the labels mean?
   362  
   363  - [`pending-decision`](https://github.com/opentofu/opentofu/labels/pending-decision): there is no decision if this issue will be implemented yet. You can show your support for this issue by commenting on it and describing what implementing this issue would solve for you.
   364  - [`pending-steering-committee-decision`](https://github.com/opentofu/opentofu/labels/pending-steering-committee-decision): the core team has referred this issue to the Technical Steering Committee for a decision.
   365  - [`accepted`](https://github.com/opentofu/opentofu/labels/accepted): the issue is accepted for development by either the core team or a community contributor. Please check if it's assigned to someone and comment on the issue if you want to work on it.
   366  - [`help wanted`](https://github.com/opentofu/opentofu/labels/help%20wanted): this issue is open for community contributions. Please check if it's assigned to someone and comment on the issue if you want to work on it.
   367  - [`good first issue`](https://github.com/opentofu/opentofu/labels/good%20first%20issue): this issue is relatively simple. If you are looking for a first contribution, this may be for you. Please check if it's assigned to someone and comment on the issue if you want to work on it.
   368  - [`bug`](https://github.com/opentofu/opentofu/labels/bug): it's broken and needs to be fixed.
   369  - [`enhancement`](https://github.com/opentofu/opentofu/labels/enhancement): it's a short-form feature request. If the implementation path is unclear, an `rfc` may be needed in addition.
   370  - [`documentation`](https://github.com/opentofu/opentofu/labels/documentation): something that needs a description on the OpenTofu website.
   371  - [`rfc`](https://github.com/opentofu/opentofu/labels/rfc): a long-form feature request with details on how exactly it should be implemented.
   372  - [`question`](https://github.com/opentofu/opentofu/labels/question): the core team needs more information on the issue to decide.
   373  - [`needs-community-input`](https://github.com/opentofu/opentofu/labels/needs-community-input): the core team needs to see how many people are affected by this issue. You can provide feedback by using reactions on the issue and adding your use case in the comments. (Please describe what problem it would solve for you specifically.)
   374  - [`needs-rfc`](https://github.com/opentofu/opentofu/labels/needs-rfc): this issue needs a detailed technical description on how it would be implemented in the form of an RFC.
   375  
   376  ---
   377  
   378  ### My issue / PR / comment is not getting any responses!
   379  
   380  Please accept our apologies, sometimes issues and comments fall through the cracks. Please post in `#dev-general` on the [OpenTofu Slack](https://opentofu.org/slack/) to alert the core team members to the lack of an answer.
   381  
   382  ---
   383  
   384  ### When I run `tofu version`, it contains a `-dev` suffix. How do I get rid of it?
   385  
   386  You can get rid of this suffix by changing the `version.dev` ldflag:
   387  
   388  ```
   389  go build -ldflags "-w -s -X 'github.com/opentofu/opentofu/version.dev=no'" -o tofu ./cmd/tofu
   390  ```
   391  
   392  ---
   393  
   394  ### How do I enable experimental features?
   395  
   396  You can build `tofu` with the experimental features enabled using the `main.experimentsAllowed` ldflag set to `yes`:
   397  
   398  ```
   399  go build -ldflags "-w -s -X 'main.experimentsAllowed=yes'" -o tofu ./cmd/tofu
   400  ```
   401  
   402  ---
   403  
   404  ### Can you implement X in the language?
   405  
   406  It depends. The OpenTofu language is based on the [HCL language](https://github.com/hashicorp/hcl) and the [cty typing system](https://github.com/zclconf/go-cty). Since both are available under an open source license, and we prefer to keep compatibility as much as possible, we currently don't maintain a fork of these libraries. Language features may need to be partially or fully implemented in HCL or cty and if that is the case, we can't implement them in OpenTofu without changes to the respective libraries beforehand.
   407  
   408  ---
   409  
   410  ### I don't like HCL, can you replace it?
   411  
   412  HCL is baked into every corner of the OpenTofu codebase, so is here to stay. However, you can use the [JSON configuration syntax](https://opentofu.org/docs/language/syntax/json/) to write your code in JSON instead of HCL.
   413  
   414  ---
   415  
   416  ### Can you fix a bug in or add a feature to the Hashicorp providers, such as AWS, Azure, etc.?
   417  
   418  We currently only maintain a read-only mirror of these providers for the purposes of building binaries for the OpenTofu registry which would otherwise not be available. They are not true downstream versions that we can add patches to and OpenTofu users expect them to work the same as the upstream versions. In short: no, we cannot fix bugs or add features to these providers.
   419  
   420  ---
   421  
   422  ### Can you fork project X?
   423  
   424  Currently, we are at capacity for development and do not have additional capacity to take on additional projects unless necessary for the continued work on OpenTofu. While the final determination lies with the [Technical Steering Committee](#who-is-the-technical-steering-committee), the answer is likely no in almost all cases.
   425  
   426  ---
   427  
   428  ### Who is the core team?
   429  
   430  Core team members are full time developers sponsored by the participating companies. You can find the list of core developers in the [MAINTAINERS](MAINTAINERS) file. Their role is to triage issues, work on feature development, help plan, review, and document community contributions, support the community, and refer feature requests to the Technical Steering Committee.
   431  
   432  ---
   433  
   434  ### Can I become a core team member?
   435  
   436  Possibly. Please look for open positions with the sponsoring companies as they hire core team members. The interview process is the same regardless of which sponsoring company you apply to. To become a core team member, you must be equally good at Go and at communication since much of our work is helping the community. Good luck!
   437  
   438  ---
   439  
   440  ### Who is the Technical Steering Committee?
   441  
   442  The Technical Steering Committee consists of one delegate from each company sponsoring the OpenTofu core team. You can find their names in the [TSC_SUMMARY.md](TSC_SUMMARY.md) file. Their role is to decide on larger commitments of core developer time, as well as long-term strategic issues.