Skip to content

Commit 53e67a1

Browse files
authored
feat(gke): add config_sync cluster samples (terraform-google-modules#765)
1 parent 6798807 commit 53e67a1

File tree

4 files changed

+163
-0
lines changed

4 files changed

+163
-0
lines changed

gke/autopilot/config_sync/git/main.tf

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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]
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2024 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# The kubernetes_manifest resource can only be used with pre-existing clusters.
16+
apiVersion: blueprints.cloud.google.com/v1alpha1
17+
kind: BlueprintTest
18+
metadata:
19+
name: config_sync_git
20+
spec:
21+
skip: true

gke/autopilot/config_sync/oci/main.tf

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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_oci]
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+
oci {
53+
sync_repo = "REPO"
54+
policy_dir = "DIRECTORY"
55+
secret_type = "SECRET"
56+
}
57+
}
58+
}
59+
}
60+
# [END gke_autopilot_config_sync_oci]
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2024 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# The kubernetes_manifest resource can only be used with pre-existing clusters.
16+
apiVersion: blueprints.cloud.google.com/v1alpha1
17+
kind: BlueprintTest
18+
metadata:
19+
name: config_sync_oci
20+
spec:
21+
skip: true

0 commit comments

Comments
 (0)