diff --git a/docs/index.md b/docs/index.md index a8d039f..25cbfc2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -14,7 +14,7 @@ description: |- ```terraform provider "fly" { - # Please don't do this. Use the FLY_TOKEN env variable instead. + # Please don't do this. Use the FLY_API_TOKEN env variable instead. flytoken = "abc123" } ``` diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 6a2d73e..bb3a0f7 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,4 +1,4 @@ provider "fly" { - # Please don't do this. Use the FLY_TOKEN env variable instead. + # Please don't do this. Use the FLY_API_TOKEN env variable instead. flytoken = "abc123" }