JamesWoolfenden / terraform-gcp-http-internal

A basic terraform module example, which the example uses for a helm repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HTTP Load Balancer with Cloud Armour

Build Status Latest Release pre-commit checkov

Requirements

No requirements.

Providers

Name Version
google n/a

Modules

No modules.

Resources

Name Type
google_compute_firewall.default resource
google_compute_firewall.healthcheck resource
google_compute_instance_template.europe-west1-template resource
google_compute_instance_template.us-east1-template resource
google_compute_region_instance_group_manager.us-east resource
google_compute_image.debian data source

Inputs

Name Description Type Default Required
common_tags This is to help you add tags to your cloud objects map(any) n/a yes
network n/a any n/a yes
project n/a string n/a yes
source_ranges n/a list
[
"0.0.0.0/0"
]
no

Outputs

No outputs.

Role and Permissions

The Terraform resource required is:

resource "google_project_iam_custom_role" "terraform_pike" {
  project     = "pike"
  role_id     = "terraform_pike"
  title       = "terraform_pike"
  description = "A user with least privileges"
  permissions = [
    "compute.firewalls.create",
    "compute.firewalls.delete",
    "compute.firewalls.get",
    "compute.firewalls.update",
    "compute.instanceTemplates.create",
    "compute.instanceTemplates.delete",
    "compute.instanceTemplates.get",
    "compute.networks.get",
    "compute.networks.updatePolicy"
  ]
}

Related Projects

Check out these related projects.

Help

Got a question?

File a GitHub issue.

Contributing

Bug Reports & Feature Requests

Please use the issue tracker to report any bugs or file feature requests.

Copyrights

Copyright © 2019-2023 James Woolfenden

License

License

See LICENSE for full details.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Contributors

James Woolfenden
James Woolfenden

About

A basic terraform module example, which the example uses for a helm repo


Languages

Language:HCL 60.7%Language:Makefile 26.4%Language:Shell 8.4%Language:PowerShell 4.4%