Skip to content

Commit

Permalink
Configure k8s service load_balancer_source_ranges (#70)
Browse files Browse the repository at this point in the history
* configure k8s service load_balancer_source_ranges and ingress_cidr

* configure k8s service load_balancer_source_ranges as ingress_cidr

* update changelog
  • Loading branch information
rpoluri authored Nov 13, 2019
1 parent 2ef4599 commit c087536
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

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).

## [3.0.1] - 2019-11-13

### Changed
- Configure k8s service load_balancer_source_ranges.

## [3.0.0] - 2019-11-12

### Added
Expand Down
3 changes: 2 additions & 1 deletion k8s.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ resource "kubernetes_service" "waggle_dance" {
port = 48869
target_port = 48869
}
type = "LoadBalancer"
type = "LoadBalancer"
load_balancer_source_ranges = var.ingress_cidr
}
}

0 comments on commit c087536

Please sign in to comment.