Skip to content

Commit c087536

Browse files
authored
Configure k8s service load_balancer_source_ranges (#70)
* configure k8s service load_balancer_source_ranges and ingress_cidr * configure k8s service load_balancer_source_ranges as ingress_cidr * update changelog
1 parent 2ef4599 commit c087536

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6+
## [3.0.1] - 2019-11-13
7+
8+
### Changed
9+
- Configure k8s service load_balancer_source_ranges.
10+
611
## [3.0.0] - 2019-11-12
712

813
### Added

k8s.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ resource "kubernetes_service" "waggle_dance" {
8383
port = 48869
8484
target_port = 48869
8585
}
86-
type = "LoadBalancer"
86+
type = "LoadBalancer"
87+
load_balancer_source_ranges = var.ingress_cidr
8788
}
8889
}

0 commit comments

Comments
 (0)