Skip to content

Commit eaf028d

Browse files
authored
Improve version constraint for github provider (#1)
1 parent 7013174 commit eaf028d

File tree

10 files changed

+27
-37
lines changed

10 files changed

+27
-37
lines changed

modules/org-organization/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This module creates following resources.
1111
| Name | Version |
1212
|------|---------|
1313
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1 |
14-
| <a name="requirement_github"></a> [github](#requirement\_github) | = 4.13.0 |
14+
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 4.13.0 |
1515

1616
## Providers
1717

@@ -27,10 +27,10 @@ No modules.
2727

2828
| Name | Type |
2929
|------|------|
30-
| [github_membership.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/membership) | resource |
31-
| [github_organization_block.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/organization_block) | resource |
32-
| [github_organization.after](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/data-sources/organization) | data source |
33-
| [github_organization.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/data-sources/organization) | data source |
30+
| [github_membership.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/membership) | resource |
31+
| [github_organization_block.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/organization_block) | resource |
32+
| [github_organization.after](https://registry.terraform.io/providers/hashicorp/github/latest/docs/data-sources/organization) | data source |
33+
| [github_organization.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/data-sources/organization) | data source |
3434

3535
## Inputs
3636

modules/org-organization/versions.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ terraform {
33

44
required_providers {
55
github = {
6-
# source = "integrations/github"
7-
# version = ">= 4.19"
86
source = "hashicorp/github"
9-
version = "= 4.13.0"
7+
version = ">= 4.13.0"
108
}
119
}
1210
}

modules/org-team/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This module creates following resources.
1111
| Name | Version |
1212
|------|---------|
1313
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1 |
14-
| <a name="requirement_github"></a> [github](#requirement\_github) | = 4.13.0 |
14+
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 4.13.0 |
1515

1616
## Providers
1717

@@ -27,8 +27,8 @@ No modules.
2727

2828
| Name | Type |
2929
|------|------|
30-
| [github_team.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/team) | resource |
31-
| [github_team_membership.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/team_membership) | resource |
30+
| [github_team.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/team) | resource |
31+
| [github_team_membership.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/team_membership) | resource |
3232

3333
## Inputs
3434

modules/org-team/versions.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ terraform {
33

44
required_providers {
55
github = {
6-
# source = "integrations/github"
7-
# version = ">= 4.19"
86
source = "hashicorp/github"
9-
version = "= 4.13.0"
7+
version = ">= 4.13.0"
108
}
119
}
1210
}

modules/project/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This module creates following resources.
1212
| Name | Version |
1313
|------|---------|
1414
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1 |
15-
| <a name="requirement_github"></a> [github](#requirement\_github) | = 4.13.0 |
15+
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 4.13.0 |
1616

1717
## Providers
1818

@@ -28,9 +28,9 @@ No modules.
2828

2929
| Name | Type |
3030
|------|------|
31-
| [github_organization_project.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/organization_project) | resource |
32-
| [github_project_column.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/project_column) | resource |
33-
| [github_repository_project.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/repository_project) | resource |
31+
| [github_organization_project.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/organization_project) | resource |
32+
| [github_project_column.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/project_column) | resource |
33+
| [github_repository_project.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/repository_project) | resource |
3434

3535
## Inputs
3636

modules/project/versions.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ terraform {
33

44
required_providers {
55
github = {
6-
# source = "integrations/github"
7-
# version = ">= 4.19"
86
source = "hashicorp/github"
9-
version = "= 4.13.0"
7+
version = ">= 4.13.0"
108
}
119
}
1210
}

modules/repository/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This module creates following resources.
1515
| Name | Version |
1616
|------|---------|
1717
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1 |
18-
| <a name="requirement_github"></a> [github](#requirement\_github) | = 4.13.0 |
18+
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 4.13.0 |
1919

2020
## Providers
2121

@@ -31,12 +31,12 @@ No modules.
3131

3232
| Name | Type |
3333
|------|------|
34-
| [github_branch_default.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/branch_default) | resource |
35-
| [github_issue_label.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/issue_label) | resource |
36-
| [github_repository.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/repository) | resource |
37-
| [github_repository_collaborator.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/repository_collaborator) | resource |
38-
| [github_repository_deploy_key.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/repository_deploy_key) | resource |
39-
| [github_team_repository.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/team_repository) | resource |
34+
| [github_branch_default.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/branch_default) | resource |
35+
| [github_issue_label.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/issue_label) | resource |
36+
| [github_repository.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/repository) | resource |
37+
| [github_repository_collaborator.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/repository_collaborator) | resource |
38+
| [github_repository_deploy_key.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/repository_deploy_key) | resource |
39+
| [github_team_repository.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/team_repository) | resource |
4040

4141
## Inputs
4242

modules/repository/versions.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ terraform {
33

44
required_providers {
55
github = {
6-
# source = "integrations/github"
7-
# version = ">= 4.19"
86
source = "hashicorp/github"
9-
version = "= 4.13.0"
7+
version = ">= 4.13.0"
108
}
119
}
1210
}

modules/webhook/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This module creates following resources.
1111
| Name | Version |
1212
|------|---------|
1313
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.1 |
14-
| <a name="requirement_github"></a> [github](#requirement\_github) | = 4.13.0 |
14+
| <a name="requirement_github"></a> [github](#requirement\_github) | >= 4.13.0 |
1515

1616
## Providers
1717

@@ -27,8 +27,8 @@ No modules.
2727

2828
| Name | Type |
2929
|------|------|
30-
| [github_organization_webhook.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/organization_webhook) | resource |
31-
| [github_repository_webhook.this](https://registry.terraform.io/providers/hashicorp/github/4.13.0/docs/resources/repository_webhook) | resource |
30+
| [github_organization_webhook.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/organization_webhook) | resource |
31+
| [github_repository_webhook.this](https://registry.terraform.io/providers/hashicorp/github/latest/docs/resources/repository_webhook) | resource |
3232

3333
## Inputs
3434

modules/webhook/versions.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ terraform {
33

44
required_providers {
55
github = {
6-
# source = "integrations/github"
7-
# version = ">= 4.19"
86
source = "hashicorp/github"
9-
version = "= 4.13.0"
7+
version = ">= 4.13.0"
108
}
119
}
1210
}

0 commit comments

Comments
 (0)