├── .gitignore ├── LICENSE ├── README-template.md ├── README.md ├── misc ├── Slack_Polls.md ├── TechTuesdayImage.jpg └── cli_kungfu.md ├── slides ├── Use Terraform to Provision Your Own Cloud-Based Remote Browsing Workstation - S4.png └── Use Terraform to Provision Your Own Cloud-Based Remote Browsing Workstation.pptx └── workbook ├── Step_01.md ├── Step_02.md ├── Step_03.md ├── Step_04.md ├── Step_05.md ├── Step_06.md ├── Step_07.md ├── Step_08.md ├── Step_09.md ├── Step_10.md ├── Step_11.md ├── Step_12.md ├── Step_13.md ├── Step_14.md └── Step_15.md /.gitignore: -------------------------------------------------------------------------------- 1 | slides/*.tmp 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/LICENSE -------------------------------------------------------------------------------- /README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/README-template.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/README.md -------------------------------------------------------------------------------- /misc/Slack_Polls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/misc/Slack_Polls.md -------------------------------------------------------------------------------- /misc/TechTuesdayImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/misc/TechTuesdayImage.jpg -------------------------------------------------------------------------------- /misc/cli_kungfu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/misc/cli_kungfu.md -------------------------------------------------------------------------------- /slides/Use Terraform to Provision Your Own Cloud-Based Remote Browsing Workstation - S4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/slides/Use Terraform to Provision Your Own Cloud-Based Remote Browsing Workstation - S4.png -------------------------------------------------------------------------------- /slides/Use Terraform to Provision Your Own Cloud-Based Remote Browsing Workstation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/slides/Use Terraform to Provision Your Own Cloud-Based Remote Browsing Workstation.pptx -------------------------------------------------------------------------------- /workbook/Step_01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_01.md -------------------------------------------------------------------------------- /workbook/Step_02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_02.md -------------------------------------------------------------------------------- /workbook/Step_03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_03.md -------------------------------------------------------------------------------- /workbook/Step_04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_04.md -------------------------------------------------------------------------------- /workbook/Step_05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_05.md -------------------------------------------------------------------------------- /workbook/Step_06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_06.md -------------------------------------------------------------------------------- /workbook/Step_07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_07.md -------------------------------------------------------------------------------- /workbook/Step_08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_08.md -------------------------------------------------------------------------------- /workbook/Step_09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_09.md -------------------------------------------------------------------------------- /workbook/Step_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_10.md -------------------------------------------------------------------------------- /workbook/Step_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_11.md -------------------------------------------------------------------------------- /workbook/Step_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_12.md -------------------------------------------------------------------------------- /workbook/Step_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_13.md -------------------------------------------------------------------------------- /workbook/Step_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_14.md -------------------------------------------------------------------------------- /workbook/Step_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Resistor52/terraform-cloud-workstation/HEAD/workbook/Step_15.md --------------------------------------------------------------------------------