Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove beta flag for custom project variable set permission #1615

Merged
merged 1 commit into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ func TestAccTFETeamProjectCustomAccessDataSource_basic(t *testing.T) {
}

func TestAccTFETeamProjectCustomAccessDataSource_basic_with_project_variable_sets(t *testing.T) {
skipUnlessBeta(t)
tfeClient, err := getClientUsingEnv()
if err != nil {
t.Fatal(err)
Expand Down
4 changes: 0 additions & 4 deletions internal/provider/resource_tfe_team_project_access_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ func TestAccTFETeamProjectCustomAccess(t *testing.T) {
}

func TestAccTFETeamProjectCustomAccess_with_project_variable_sets(t *testing.T) {
skipUnlessBeta(t)
tmAccess := &tfe.TeamProjectAccess{}
rInt := rand.New(rand.NewSource(time.Now().UnixNano())).Int()
access := tfe.TeamProjectAccessCustom
Expand Down Expand Up @@ -157,7 +156,6 @@ func TestAccTFETeamProjectCustomAccess_import(t *testing.T) {
}

func TestAccTFETeamProjectCustomAccess_import_with_project_variable_set(t *testing.T) {
skipUnlessBeta(t)
rInt := rand.New(rand.NewSource(time.Now().UnixNano())).Int()
tmAccess := &tfe.TeamProjectAccess{}
access := tfe.TeamProjectAccessCustom
Expand Down Expand Up @@ -239,7 +237,6 @@ func TestAccTFETeamProjectCustomAccess_full_update(t *testing.T) {
}

func TestAccTFETeamProjectCustomAccess_full_update_with_project_variable_sets(t *testing.T) {
skipUnlessBeta(t)
tmAccess := &tfe.TeamProjectAccess{}
rInt := rand.New(rand.NewSource(time.Now().UnixNano())).Int()
access := tfe.TeamProjectAccessCustom
Expand Down Expand Up @@ -348,7 +345,6 @@ func TestAccTFETeamProjectCustomAccess_partial_update(t *testing.T) {
}

func TestAccTFETeamProjectCustomAccess_partial_update_with_project_variable_sets(t *testing.T) {
skipUnlessBeta(t)
tmAccess := &tfe.TeamProjectAccess{}
rInt := rand.New(rand.NewSource(time.Now().UnixNano())).Int()
access := tfe.TeamProjectAccessCustom
Expand Down