├── LICENSE ├── README.md ├── agent ├── Makefile ├── main.tf ├── outputs.tf ├── puppetagent.conf └── variables.tf └── master ├── Makefile ├── main.tf ├── outputs.tf ├── puppetmaster.conf └── variables.tf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/README.md -------------------------------------------------------------------------------- /agent/Makefile: -------------------------------------------------------------------------------- 1 | .PHONEY: all 2 | 3 | all: 4 | true 5 | 6 | -------------------------------------------------------------------------------- /agent/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/agent/main.tf -------------------------------------------------------------------------------- /agent/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/agent/outputs.tf -------------------------------------------------------------------------------- /agent/puppetagent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/agent/puppetagent.conf -------------------------------------------------------------------------------- /agent/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/agent/variables.tf -------------------------------------------------------------------------------- /master/Makefile: -------------------------------------------------------------------------------- 1 | .PHONEY: all 2 | 3 | all: 4 | true 5 | 6 | -------------------------------------------------------------------------------- /master/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/master/main.tf -------------------------------------------------------------------------------- /master/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/master/outputs.tf -------------------------------------------------------------------------------- /master/puppetmaster.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/master/puppetmaster.conf -------------------------------------------------------------------------------- /master/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_puppet/HEAD/master/variables.tf --------------------------------------------------------------------------------