diff --git a/modules/foundations-github-organization/README.md b/modules/foundations-github-organization/README.md
index 7d8e5ef..97e355f 100644
--- a/modules/foundations-github-organization/README.md
+++ b/modules/foundations-github-organization/README.md
@@ -9,10 +9,10 @@
| Name | Version |
|------|---------|
-| [file](#provider\_file) | n/a |
| [github](#provider\_github) | 5.44.0 |
| [github.enterprise\_scoped](#provider\_github.enterprise\_scoped) | 5.44.0 |
| [github.foundation\_org\_scoped](#provider\_github.foundation\_org\_scoped) | 5.44.0 |
+| [local](#provider\_local) | n/a |
## Modules
@@ -38,7 +38,7 @@ No modules.
| [github_repository_collaborators.organization_repo_collaborators](https://registry.terraform.io/providers/hashicorp/github/5.44.0/docs/resources/repository_collaborators) | resource |
| [github_repository_file.main_readme](https://registry.terraform.io/providers/hashicorp/github/5.44.0/docs/resources/repository_file) | resource |
| [github_team.foundation_devs](https://registry.terraform.io/providers/hashicorp/github/5.44.0/docs/resources/team) | resource |
-| [file_file.main_readme](https://registry.terraform.io/providers/hashicorp/file/latest/docs/data-sources/file) | data source |
+| [local_file.main_readme](https://registry.terraform.io/providers/hashicorp/local/latest/docs/data-sources/file) | data source |
## Inputs
diff --git a/modules/foundations-github-organization/repo_readme.tf b/modules/foundations-github-organization/repo_readme.tf
index 7bc668c..da1c28f 100644
--- a/modules/foundations-github-organization/repo_readme.tf
+++ b/modules/foundations-github-organization/repo_readme.tf
@@ -1,4 +1,4 @@
-data "file" "main_readme" {
+data "local_file" "main_readme" {
filename = var.readme_path
}