-
Notifications
You must be signed in to change notification settings - Fork 65
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
Quick cleanup #2
Quick cleanup #2
Conversation
@@ -38,19 +38,17 @@ This reference architecture implementation uses Terraform. You will need to do t | |||
|
|||
3. Ensure you are logged in with `gcloud` (See: [gcloud auth application-default login](https://cloud.google.com/sdk/gcloud/reference/auth/application-default)). | |||
|
|||
You will need to ensure your Google Cloud account has appropriate permissions on the project you wish to provision in (see [Required Google Cloud Permissions](#required-google-cloud-permissions)). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No dedicated section, so removing it?
|
||
4. Ensure the [Kubernetes Engine API](https://console.cloud.google.com/marketplace/product/google/container.googleapis.com) is enabled for your project. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now in Terraform: modules.base.main.tf
@@ -28,13 +28,7 @@ resource "google_project_iam_member" "gke_admin" { | |||
member = "serviceAccount:${google_service_account.gke_cluster_access.email}" | |||
} | |||
|
|||
resource "google_project_iam_member" "gke_logging_viewer" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed because using logging-k8s
@@ -9,9 +9,9 @@ terraform { | |||
helm = { | |||
source = "hashicorp/helm" | |||
} | |||
http = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not used by default, so let's comment to avoid terraform init
to resolve/download it?
Ready for your review, thanks! |
No description provided.