-
Notifications
You must be signed in to change notification settings - Fork 1.3k
chore(master): release 25.0.0 #1512
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
Conversation
e449b15 to
3d25e8c
Compare
2a2c796 to
350d9fd
Compare
350d9fd to
361c5cf
Compare
a7e3146 to
e6cd1fc
Compare
e6cd1fc to
2ff981a
Compare
4f559c6 to
6d46941
Compare
|
Hey all, hoping to get access to the if not does anyone know of a way to point a terraform provider at its source repo? edit Answered my own question module "gke" {
source = "git@github.com:terraform-google-modules/terraform-google-kubernetes-engine.git//modules/private-cluster-update-variant"
} |
Good that you found a solution by directly importing from the master branch (be aware that your solution always fetches the latest version and could break. Therefore switch to this release asap when it is available) Regarding your original question you can always use the base resources defined by a Terraform provider. In this case that would be the resource "google_container_cluster" "primary" {
name = "my-gke-cluster"
location = "us-central1"
gateway_api_config {
channel = "CHANNEL_STANDARD"
}
...
}Unfortunately that would mean you would lose the comforts of a modules such as this one, as you would need to define all the variables yourself. |
|
We probably want to include #1537 |
dc83b4d to
197caf4
Compare
8d4f935 to
090e445
Compare
090e445 to
7cf5fcb
Compare
|
@release-please[bot] |
🤖 I have created a release beep boop
25.0.0 (2023-02-03)
⚠ BREAKING CHANGES
resource_labelsto NP (#1508)Features
resource_labelsto NP (#1508) (e7566c5)Bug Fixes
This PR was generated with Release Please. See documentation.