Skip to content

Commit

Permalink
Merge branch 'main' into VAULT-26362/remove-vault-pkg-dep
Browse files Browse the repository at this point in the history
  • Loading branch information
vinay-gopalan committed May 29, 2024
2 parents f3867b3 + 9abe699 commit 3cbc4c0
Show file tree
Hide file tree
Showing 11 changed files with 537 additions and 180 deletions.
9 changes: 0 additions & 9 deletions .github/labeler-pull-request-triage.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/pull-request.yml

This file was deleted.

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
FEATURES:
* Add support for `iam_tags` in `vault_aws_secret_backend_role` ([#2231](https://github.com/hashicorp/terraform-provider-vault/pull/2231)).
* Add support for `inheritable` on `vault_quota_rate_limit` and `vault_quota_lease_count`. Requires Vault 1.15+.: ([#2133](https://github.com/hashicorp/terraform-provider-vault/pull/2133)).
* Add support for new WIF fields in `vault_gcp_secret_backend` ([#2249](https://github.com/hashicorp/terraform-provider-vault/pull/2249))

IMPROVEMENTS:
* return a useful error when delete fails for the `vault_jwt_auth_backend_role` resource: ([#2232](https://github.com/hashicorp/terraform-provider-vault/pull/2232))
Expand Down
5 changes: 5 additions & 0 deletions internal/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ const (
FieldLink = "link"
FieldGranularity = "granularity"
FieldGranularityLevel = "granularity_level"
FieldListingVisibility = "listing_visibility"
FieldPassthroughRequestHeaders = "passthrough_request_headers"
FieldAllowedResponseHeaders = "allowed_response_headers"
FieldDelegatedAuthAccessors = "delegated_auth_accessors"
FieldPluginVersion = "plugin_version"

/*
common environment variables
Expand Down
17 changes: 10 additions & 7 deletions internal/provider/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,16 @@ const (
var (
MaxHTTPRetriesCCC int

VaultVersion110 = version.Must(version.NewSemver(consts.VaultVersion110))
VaultVersion111 = version.Must(version.NewSemver(consts.VaultVersion111))
VaultVersion112 = version.Must(version.NewSemver(consts.VaultVersion112))
VaultVersion113 = version.Must(version.NewSemver(consts.VaultVersion113))
VaultVersion114 = version.Must(version.NewSemver(consts.VaultVersion114))
VaultVersion115 = version.Must(version.NewSemver(consts.VaultVersion115))
VaultVersion116 = version.Must(version.NewSemver(consts.VaultVersion116))
VaultVersion110 = version.Must(version.NewSemver(consts.VaultVersion110))
VaultVersion111 = version.Must(version.NewSemver(consts.VaultVersion111))
VaultVersion112 = version.Must(version.NewSemver(consts.VaultVersion112))
VaultVersion113 = version.Must(version.NewSemver(consts.VaultVersion113))
VaultVersion114 = version.Must(version.NewSemver(consts.VaultVersion114))
VaultVersion115 = version.Must(version.NewSemver(consts.VaultVersion115))
VaultVersion116 = version.Must(version.NewSemver(consts.VaultVersion116))
VaultVersion116Ent = version.Must(version.NewSemver(consts.VaultVersion116Ent))
VaultVersion117 = version.Must(version.NewSemver(consts.VaultVersion117))
VaultVersion117Ent = version.Must(version.NewSemver(consts.VaultVersion117Ent))

TokenTTLMinRecommended = time.Minute * 15
)
Expand Down
Loading

0 comments on commit 3cbc4c0

Please sign in to comment.