Skip to content

Commit af3f53c

Browse files
authored
fix: typo (#690)
1 parent 639ac4b commit af3f53c

File tree

1 file changed

+2
-2
lines changed
  • anthos-attached-clusters/modules/attached-install-manifest

1 file changed

+2
-2
lines changed

anthos-attached-clusters/modules/attached-install-manifest/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ locals {
2222
}
2323

2424
# Get the install manifest from the attached clusters service.
25-
data "google_container_attached_install_manifest" "boostrap" {
25+
data "google_container_attached_install_manifest" "bootstrap" {
2626
location = var.gcp_location
2727
project = var.attached_cluster_fleet_project
2828
cluster_id = var.attached_cluster_name
@@ -43,7 +43,7 @@ resource "local_file" "bootstrap_helm_chart" {
4343
# Write out the install manifest as the helm chart.
4444
resource "local_file" "bootstrap_manifests" {
4545
filename = "${local.helm_chart_dir}/templates/bootstrap.yaml"
46-
content = data.google_container_attached_install_manifest.boostrap.manifest
46+
content = data.google_container_attached_install_manifest.bootstrap.manifest
4747
}
4848

4949
# Apply the helm chart to the cluster.

0 commit comments

Comments
 (0)