Jean-Bernard Ratté

Results 14 comments of Jean-Bernard Ratté

The previous version of `sdelete` can be downloaded from the following the web archive URL. http://web.archive.org/web/20140902022253/http://download.sysinternals.com/files/SDelete.zip

1. 9.1.7, CentOS 6 2. 0.9.27.61 3. Not supported in the version we use 4. Name Value Pairs 5. Both 6. What's the best and/or worst thing about tcWebHooks? a....

Reading my previous post here. I see that I might have come off a little bit strong. Sorry about that, I think you're doing a great job. No offence was...

Are you planning on dropping support for TeamCity 9 for version 1.1?

@miry is this still valid? What's missing, beside the conflict, to push this out?

@miry can this one be closed since https://github.com/Shopify/semian/pull/427 is done?

Speaking of HA, consider the following ``` azs = "us-east-1a,us-east-1b" public_subnets = "10.0.10.0/24,10.0.20.0/24" # Note alternating 3rd byte. 10s are in azs[0] and 20s are in azs[1] # List index...

The code associated with this issue is [pretty obvious](https://github.com/terraform-community-modules/tf_aws_vpc/blob/master/main.tf#L81) ``` count = "${length(var.private_subnets) * lookup(map(var.enable_nat_gateway, 1), "true", 0)}" ``` But it should be ``` count = "${length(var.public_subnets) * lookup(map(var.enable_nat_gateway, 1),...

You **never** need more than one NGW per AZ if you setup your routes properly (Each Private SN, if required, should route `0.0.0.0/0` to the NGW). But, you don't need...

The NAT Gateway that AWS provide you with is an instance with multihoming (or IP Aliasing) and Port Forwarding configured. You can do the same with a regular AWS instance...