FAQ
| This is a
LIVE
service |
Changelog
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GCP Cloud Run app
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Information Services
DevOps
Infrastructure
Terraform Modules
GCP Cloud Run app
Commits
4b54a44a
Commit
4b54a44a
authored
3 years ago
by
Wajdi Hajji
Browse files
Options
Downloads
Plain Diff
Merge branch 'v4' into 24-add-lb-config
parents
c251b82a
9409efef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!32
Resolve "Adding LB config for load-balanced Cloud Run services"
Pipeline
#103915
passed
3 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG
+2
-0
2 additions, 0 deletions
CHANGELOG
static_egress_ip.tf
+1
-0
1 addition, 0 deletions
static_egress_ip.tf
variables.tf
+10
-0
10 additions, 0 deletions
variables.tf
with
13 additions
and
0 deletions
CHANGELOG
+
2
−
0
View file @
4b54a44a
...
...
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [4.0.1] - 2021-07-15
### Changed
- Support load balancer ingress style alongside Cloud Run domain mapping.
- Surface Cloud NAT variable for minimum number of SNAT tuples, supporting a larger
number of outbound connections if required.
## [4.0.0] - 2021-06-29
### Changed
...
...
This diff is collapsed.
Click to expand it.
static_egress_ip.tf
+
1
−
0
View file @
4b54a44a
...
...
@@ -50,6 +50,7 @@ resource "google_compute_router_nat" "static-ip-nat" {
nat_ips
=
[
google_compute_address
.
static-ip
[
0
].
self_link
]
nat_ip_allocate_option
=
"MANUAL_ONLY"
region
=
var
.
cloud_run_region
min_ports_per_vm
=
var
.
min_ports_per_vm
source_subnetwork_ip_ranges_to_nat
=
"LIST_OF_SUBNETWORKS"
subnetwork
{
...
...
This diff is collapsed.
Click to expand it.
variables.tf
+
10
−
0
View file @
4b54a44a
...
...
@@ -274,6 +274,16 @@ variable "static_egress_ip_cidr_range" {
description
=
"The cidr range used to create a subnet that this cloud run will use if assigned a static ip"
}
variable
"min_ports_per_vm"
{
default
=
64
type
=
number
description
=
<<-
EOL
When
using
Cloud
NAT
to
provide
an
egress
route
,
Cloud
NAT
's minimum ports per VM
can be configured to determine how many concurrent connections can be established
to the same destination IP address and port.
EOL
}
variable "secrets_volume" {
type = list(object({
name = string # name of the file that is going to be mounted
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment