|
| 1 | +/** |
| 2 | +* Copyright 2024 Google LLC |
| 3 | +* |
| 4 | +* Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +* you may not use this file except in compliance with the License. |
| 6 | +* You may obtain a copy of the License at |
| 7 | +* |
| 8 | +* http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +* |
| 10 | +* Unless required by applicable law or agreed to in writing, software |
| 11 | +* distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +* See the License for the specific language governing permissions and |
| 14 | +* limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +# [START gke_autopilot_config_sync_git] |
| 18 | +data "google_project" "default" {} |
| 19 | + |
| 20 | +resource "google_container_cluster" "default" { |
| 21 | + name = "gke-autopilot-basic" |
| 22 | + location = "us-central1" |
| 23 | + |
| 24 | + fleet { |
| 25 | + project = data.google_project.default.project_id |
| 26 | + } |
| 27 | + |
| 28 | + enable_autopilot = true |
| 29 | + |
| 30 | + # Set `deletion_protection` to `true` will ensure that one cannot |
| 31 | + # accidentally delete this instance by use of Terraform. |
| 32 | + deletion_protection = false |
| 33 | +} |
| 34 | + |
| 35 | +resource "google_gke_hub_feature" "configmanagement_feature" { |
| 36 | + name = "configmanagement" |
| 37 | + location = "global" |
| 38 | +} |
| 39 | + |
| 40 | +resource "google_gke_hub_feature_membership" "configmanagement_feature_member" { |
| 41 | + location = "global" |
| 42 | + |
| 43 | + feature = google_gke_hub_feature.configmanagement_feature.name |
| 44 | + membership = google_container_cluster.default.fleet[0].membership_id |
| 45 | + membership_location = google_container_cluster.default.fleet[0].membership_location |
| 46 | + |
| 47 | + configmanagement { |
| 48 | + config_sync { |
| 49 | + # The field `enabled` was introduced in Terraform version 5.41.0, and |
| 50 | + # needs to be set to `true` explicitly to install Config Sync. |
| 51 | + enabled = true |
| 52 | + git { |
| 53 | + sync_repo = "REPO" |
| 54 | + sync_branch = "BRANCH" |
| 55 | + policy_dir = "DIRECTORY" |
| 56 | + secret_type = "SECRET" |
| 57 | + } |
| 58 | + } |
| 59 | + } |
| 60 | +} |
| 61 | +# [END gke_autopilot_config_sync_git] |
0 commit comments