From c6ba6b232af863e0efb854e014bc22791fa0073f Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Tue, 19 Dec 2023 08:31:17 +0900 Subject: [PATCH] add example of running apply with -parallelism=1 to README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 5819f8b..86195f5 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,10 @@ provider "sigsci" { Resource documentation and examples can be found in [docs/resources](./docs/resources). +## FAQ + +FAQ can be found in [docs/guides/FAQ.md](./docs/guides/FAQ.md). + ## Example [main.tf](https://github.com/signalsciences/terraform-provider-sigsci/blob/main/main.tf) has an example of every resource. ```hcl-terraform @@ -123,3 +127,13 @@ resource "sigsci_corp_list" "test_list" { } ``` + +## Errors + +Errors occasionally occur when updating certain resources. If an error occurs please try re-running with `-parallelism=1`: + +``` +$ terraform apply -parallelism=1 +``` + +If running with `-parallelism=1` does not resolve the error, please open an issue.