You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Note, make sure the provider path matches where your actual repository is located.
47
+
> The `terraform.rc` file is located in the user's `%APPDATA%` directory on Windows and `.terraformrc` file is located in the user's home directory (`~`) on Linux
48
+
49
+
Once you have updated the `terraform.rc` file, you can setup a local testing repository and reference the Stack Overflow Terraform provider. You _DO NOT_ need to run `terraform init` when using local development provider overrides! Also, if you encounter any errors, ensure that you remove your `.terraform` folder and `.terraform.lock.hcl` to prevent any version conflicts.
50
+
51
+
## Acceptance Tests
52
+
53
+
Acceptence tests (or integration tests) are automatically run from the [test.yml](./github/workflows/test.yml) GitHub Actions Workflow for all pushes and pull requests against a developmentment Stack Overflow Enterprise (SOE) instance. This instance needs to have the following configurations applied to ensure that the tests do not fail quality control checks that prevent duplicated content.
SOE site settings can be accessed via the `/developer/site-settings` route. Additional details can be found on the documentation help site: [https://stackoverflowteams.help/en/articles/9859814-question-quality-and-duplicate-checks](https://stackoverflowteams.help/en/articles/9859814-question-quality-and-duplicate-checks)
59
+
60
+
> For details on setting up authentication, check the [docs/index.md#authentication-and-configuration](./docs/index.md#authentication-and-configuration) section.
Copy file name to clipboardExpand all lines: docs/index.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,3 +98,4 @@ The migration steps should be as follows:
98
98
1. Remove all usage of the `filter` field from resources
99
99
1. Remove usage of the `default_tags` field from the provider (users may opt to use a local variable with default tags and then subsequently merge that list with each resource's tag values)
100
100
1. Remove usage of the `team_name` field from the provider. Users should set the `base_url` field or set the `STACK_OVERFLOW_API_URL` environment variable instead. For example, if the previous configuration only set the `team_name` field to the value `myteam`, the `base_url` field should now be set to `https://api.stackoverflowteams.com/v3/teams/myteam/`
101
+
1. Update all `stackoveflow_article``article_type` fields to one of the following: [`knowledgeArticle`, `announcement`, `policy`, `howToGuide`]
0 commit comments