diff --git a/examples/azure_devops_container_instance/_header.md b/examples/azure_devops_container_instance/_header.md
index 3b53e50..5fbf002 100644
--- a/examples/azure_devops_container_instance/_header.md
+++ b/examples/azure_devops_container_instance/_header.md
@@ -1,3 +1,3 @@
-# Azure DevOps minimal example with a container instance private networking
+# Azure DevOps minimal example with a container instance and private networking
This example deploys Azure DevOps Agents to Azure Container Instance using the minimal set of required variables using private networking.
diff --git a/examples/github_container_instance/README.md b/examples/github_container_instance/README.md
new file mode 100644
index 0000000..c7f9422
--- /dev/null
+++ b/examples/github_container_instance/README.md
@@ -0,0 +1,191 @@
+
+# GitHub minimal example
+
+This example deploys GitHub Runners to Azure Container Apps using the minimal set of required variables.
+
+```hcl
+variable "github_organization_name" {
+ type = string
+ description = "GitHub Organisation Name"
+}
+
+variable "github_personal_access_token" {
+ type = string
+ description = "The personal access token used for authentication to GitHub."
+ sensitive = true
+}
+
+variable "github_runners_personal_access_token" {
+ description = "Personal access token for GitHub self-hosted runners (the token requires the 'repo' scope and should not expire)."
+ type = string
+ sensitive = true
+}
+
+locals {
+ tags = {
+ scenario = "default"
+ }
+}
+
+terraform {
+ required_version = ">= 1.9"
+ required_providers {
+ azurerm = {
+ source = "hashicorp/azurerm"
+ version = "~> 3.113"
+ }
+ github = {
+ source = "integrations/github"
+ version = "~> 5.36"
+ }
+ random = {
+ source = "hashicorp/random"
+ version = "~> 3.5"
+ }
+ }
+}
+
+provider "azurerm" {
+ features {}
+}
+
+provider "github" {
+ token = var.github_personal_access_token
+ owner = var.github_organization_name
+}
+
+module "regions" {
+ source = "Azure/regions/azurerm"
+ version = ">= 0.3.0"
+}
+
+resource "random_integer" "region_index" {
+ max = length(module.regions.regions) - 1
+ min = 0
+}
+
+resource "random_string" "name" {
+ length = 6
+ numeric = true
+ special = false
+ upper = false
+}
+
+module "naming" {
+ source = "Azure/naming/azurerm"
+ version = ">= 0.3.0"
+}
+
+data "github_organization" "alz" {
+ name = var.github_organization_name
+}
+
+locals {
+ enterprise_plan = "enterprise"
+ free_plan = "free"
+}
+
+resource "github_repository" "alz" {
+ name = random_string.name.result
+ description = random_string.name.result
+ auto_init = true
+ visibility = data.github_organization.alz.plan == local.free_plan ? "public" : "private"
+ allow_update_branch = true
+ allow_merge_commit = false
+ allow_rebase_merge = false
+ vulnerability_alerts = true
+}
+
+# This is the module call
+module "github_runners" {
+ source = "../.."
+ postfix = random_string.name.result
+ location = module.regions.regions[random_integer.region_index.result].name
+ version_control_system_type = "github"
+ version_control_system_personal_access_token = var.github_runners_personal_access_token
+ version_control_system_organization = var.github_organization_name
+ version_control_system_repository = github_repository.alz.name
+ virtual_network_address_space = "10.0.0.0/16"
+}
+```
+
+
+## Requirements
+
+The following requirements are needed by this module:
+
+- [terraform](#requirement\_terraform) (>= 1.9)
+
+- [azurerm](#requirement\_azurerm) (~> 3.113)
+
+- [github](#requirement\_github) (~> 5.36)
+
+- [random](#requirement\_random) (~> 3.5)
+
+## Resources
+
+The following resources are used by this module:
+
+- [github_repository.alz](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository) (resource)
+- [random_integer.region_index](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/integer) (resource)
+- [random_string.name](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) (resource)
+- [github_organization.alz](https://registry.terraform.io/providers/integrations/github/latest/docs/data-sources/organization) (data source)
+
+
+## Required Inputs
+
+The following input variables are required:
+
+### [github\_organization\_name](#input\_github\_organization\_name)
+
+Description: GitHub Organisation Name
+
+Type: `string`
+
+### [github\_personal\_access\_token](#input\_github\_personal\_access\_token)
+
+Description: The personal access token used for authentication to GitHub.
+
+Type: `string`
+
+### [github\_runners\_personal\_access\_token](#input\_github\_runners\_personal\_access\_token)
+
+Description: Personal access token for GitHub self-hosted runners (the token requires the 'repo' scope and should not expire).
+
+Type: `string`
+
+## Optional Inputs
+
+No optional inputs.
+
+## Outputs
+
+No outputs.
+
+## Modules
+
+The following Modules are called:
+
+### [github\_runners](#module\_github\_runners)
+
+Source: ../..
+
+Version:
+
+### [naming](#module\_naming)
+
+Source: Azure/naming/azurerm
+
+Version: >= 0.3.0
+
+### [regions](#module\_regions)
+
+Source: Azure/regions/azurerm
+
+Version: >= 0.3.0
+
+
+## Data Collection
+
+The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at . You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
+
\ No newline at end of file
diff --git a/examples/github_container_instance/_footer.md b/examples/github_container_instance/_footer.md
new file mode 100644
index 0000000..bc56bcb
--- /dev/null
+++ b/examples/github_container_instance/_footer.md
@@ -0,0 +1,4 @@
+
+## Data Collection
+
+The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at . You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
diff --git a/examples/github_container_instance/_header.md b/examples/github_container_instance/_header.md
new file mode 100644
index 0000000..b066bc4
--- /dev/null
+++ b/examples/github_container_instance/_header.md
@@ -0,0 +1,3 @@
+# GitHub minimal example with a container instance and private networking
+
+This example deploys GitHub Runners to Azure Container Instance using the minimal set of required variables using private networking.
diff --git a/examples/github_container_instance/action.yml b/examples/github_container_instance/action.yml
new file mode 100644
index 0000000..89ec034
--- /dev/null
+++ b/examples/github_container_instance/action.yml
@@ -0,0 +1,17 @@
+name: Example Action
+
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: self-hosted
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Run a one-line script
+ run: echo Hello, world!
diff --git a/examples/github_container_instance/main.tf b/examples/github_container_instance/main.tf
new file mode 100644
index 0000000..b771c29
--- /dev/null
+++ b/examples/github_container_instance/main.tf
@@ -0,0 +1,176 @@
+variable "github_organization_name" {
+ type = string
+ description = "GitHub Organisation Name"
+}
+
+variable "github_personal_access_token" {
+ type = string
+ description = "The personal access token used for authentication to GitHub."
+ sensitive = true
+}
+
+variable "github_runners_personal_access_token" {
+ description = "Personal access token for GitHub self-hosted runners (the token requires the 'repo' scope and should not expire)."
+ type = string
+ sensitive = true
+}
+
+locals {
+ tags = {
+ scenario = "default"
+ }
+}
+
+terraform {
+ required_version = ">= 1.9"
+ required_providers {
+ azurerm = {
+ source = "hashicorp/azurerm"
+ version = "~> 3.113"
+ }
+ github = {
+ source = "integrations/github"
+ version = "~> 5.36"
+ }
+ random = {
+ source = "hashicorp/random"
+ version = "~> 3.5"
+ }
+ }
+}
+
+provider "azurerm" {
+ features {}
+}
+
+provider "github" {
+ token = var.github_personal_access_token
+ owner = var.github_organization_name
+}
+
+resource "random_string" "name" {
+ length = 6
+ numeric = true
+ special = false
+ upper = false
+}
+
+module "naming" {
+ source = "Azure/naming/azurerm"
+ version = ">= 0.3.0"
+}
+
+data "github_organization" "alz" {
+ name = var.github_organization_name
+}
+
+locals {
+ enterprise_plan = "enterprise"
+ free_plan = "free"
+ default_commit_email = "demo@microsoft.com"
+ action_file = "action.yml"
+}
+
+resource "github_repository" "this" {
+ name = random_string.name.result
+ description = random_string.name.result
+ auto_init = true
+ visibility = data.github_organization.alz.plan == local.free_plan ? "public" : "private"
+ allow_update_branch = true
+ allow_merge_commit = false
+ allow_rebase_merge = false
+ vulnerability_alerts = true
+}
+
+resource "github_repository_file" "this" {
+ repository = github_repository.this.name
+ file = ".github/workflows/${local.action_file}"
+ content = file("${path.module}/${local.action_file}")
+ commit_author = local.default_commit_email
+ commit_email = local.default_commit_email
+ commit_message = "Add ${local.action_file} [skip ci]"
+ overwrite_on_create = true
+}
+
+# This is the module call
+module "github_runners" {
+ source = "../.."
+ compute_types = ["azure_container_instance"]
+ postfix = random_string.name.result
+ location = local.selected_region
+ version_control_system_type = "github"
+ version_control_system_personal_access_token = var.github_runners_personal_access_token
+ version_control_system_organization = var.github_organization_name
+ version_control_system_repository = github_repository.this.name
+ virtual_network_address_space = "10.0.0.0/16"
+}
+
+# Region helpers
+module "regions" {
+ source = "Azure/regions/azurerm"
+ version = ">= 0.3.0"
+}
+
+resource "random_integer" "region_index" {
+ max = length(local.regions) - 1
+ min = 0
+}
+
+locals {
+ regions = [ for region in module.regions.regions : region.name if !contains(local.excluded_regions, region.name) && contains(local.included_regions, region.name) ]
+ included_regions = [
+ "eastus",
+ "westeurope",
+ "southeastasia",
+ "australiasoutheast",
+ "westcentralus",
+ "japaneast",
+ "uksouth",
+ "centralindia",
+ "canadacentral",
+ "westus2",
+ "australiacentral",
+ "australiaeast",
+ "francecentral",
+ "koreacentral",
+ "northeurope",
+ "centralus",
+ "eastasia",
+ "eastus2",
+ "southcentralus",
+ "northcentralus",
+ "westus",
+ "ukwest",
+ "southafricanorth",
+ "brazilsouth",
+ "switzerlandnorth",
+ "switzerlandwest",
+ "germanywestcentral",
+ "australiacentral2",
+ "uaecentral",
+ "uaenorth",
+ "japanwest",
+ "brazilsoutheast",
+ "norwayeast",
+ "norwaywest",
+ "francesouth",
+ "southindia",
+ "koreasouth",
+ "jioindiacentral",
+ "jioindiawest",
+ "qatarcentral",
+ "canadaeast",
+ "westus3",
+ "swedencentral",
+ "southafricawest",
+ "germanynorth",
+ "polandcentral",
+ "israelcentral",
+ "italynorth",
+ "spaincentral"
+ ]
+ excluded_regions = [
+ "westeurope" # Capacity issues
+ ]
+ selected_region = local.regions[random_integer.region_index.result]
+}