update name
This commit is contained in:
@@ -19,11 +19,11 @@ resource "cloudflare_zero_trust_access_infrastructure_target" "gcp_ssh_target" {
|
||||
}
|
||||
|
||||
# Creating the infrastructure Application
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_app_ssh_infra" {
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_aws_app_ssh_infra" {
|
||||
account_id = local.cloudflare_account_id
|
||||
|
||||
type = "infrastructure"
|
||||
name = var.cloudflare_infra_app_name
|
||||
name = var.cloudflare_aws_infra_app_name
|
||||
logo_url = "https://upload.wikimedia.org/wikipedia/commons/0/01/Google-cloud-platform.svg"
|
||||
tags = [cloudflare_zero_trust_access_tag.tags["engineers"].name]
|
||||
custom_deny_url = "https://denied.tips-of-mine.org/"
|
||||
|
||||
@@ -19,11 +19,11 @@ resource "cloudflare_zero_trust_access_infrastructure_target" "gcp_rdp_target" {
|
||||
}
|
||||
|
||||
# Domain Controller Browser-Rendered RDP Application
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_app_rdp_domain" {
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_aws_app_rdp_domain" {
|
||||
account_id = local.cloudflare_account_id
|
||||
|
||||
type = "rdp"
|
||||
name = var.cloudflare_browser_rdp_app_name
|
||||
name = var.cloudflare_aws_browser_rdp_app_name
|
||||
app_launcher_visible = true
|
||||
logo_url = "https://www.kevinsubileau.fr/wp-content/uploads/2016/05/RDP_icon.png"
|
||||
tags = [cloudflare_zero_trust_access_tag.tags["engineers"].name]
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
#======================================================
|
||||
|
||||
# Creating the Self-hosted Application for Browser rendering SSH
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_app_ssh_browser" {
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_aws_app_ssh_browser" {
|
||||
account_id = local.cloudflare_account_id
|
||||
|
||||
type = "ssh"
|
||||
name = var.cloudflare_browser_ssh_app_name
|
||||
name = var.cloudflare_aws_browser_ssh_app_name
|
||||
app_launcher_visible = true
|
||||
logo_url = "https://cdn.iconscout.com/icon/free/png-256/free-database-icon-download-in-svg-png-gif-file-formats--ui-elements-pack-user-interface-icons-444649.png"
|
||||
tags = [cloudflare_zero_trust_access_tag.tags["engineers"].name]
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
#======================================================
|
||||
# Creating the Self-hosted Application for Browser rendering VNC
|
||||
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_app_vnc_browser" {
|
||||
resource "cloudflare_zero_trust_access_application" "cloudflare_aws_app_vnc_browser" {
|
||||
account_id = local.cloudflare_account_id
|
||||
|
||||
type = "vnc"
|
||||
name = var.cloudflare_browser_vnc_app_name
|
||||
name = var.cloudflare_aws_browser_vnc_app_name
|
||||
app_launcher_visible = true
|
||||
logo_url = "https://blog.zwindler.fr/2015/07/vnc.png"
|
||||
tags = [cloudflare_zero_trust_access_tag.tags["engineers"].name]
|
||||
|
||||
@@ -107,14 +107,20 @@ cloudflare_subdomain_training_status = "training-status.tips-of-mine.org"
|
||||
cloudflare_target_ssh_name = "GCP-database"
|
||||
cloudflare_target_rdp_name = "Domain-Controller"
|
||||
|
||||
# Applications
|
||||
cloudflare_infra_app_name = "GCP Infrastructure SSH database"
|
||||
cloudflare_browser_ssh_app_name = "AWS Browser SSH database"
|
||||
cloudflare_browser_vnc_app_name = "AWS Browser VNC database"
|
||||
cloudflare_browser_rdp_app_name = "GCP Browser RDP windows"
|
||||
# Applications AWS
|
||||
cloudflare_aws_browser_ssh_app_name = "AWS : Browser SSH database"
|
||||
cloudflare_aws_browser_vnc_app_name = "AWS : Browser VNC database"
|
||||
cloudflare_aws_infra_app_name = "AWS : Infrastructure SSH database"
|
||||
cloudflare_aws_browser_rdp_app_name = "AWS : Browser RDP windows"
|
||||
cloudflare_sensitive_web_app_name = "Competition App"
|
||||
cloudflare_intranet_web_app_name = "Intranet"
|
||||
|
||||
# Applications GCP
|
||||
cloudflare_gcp_browser_ssh_app_name = "GCP : Browser SSH database"
|
||||
cloudflare_gcp_browser_vnc_app_name = "GCP : Browser VNC database"
|
||||
cloudflare_gcp_infra_app_name = "GCP : Infrastructure SSH database"
|
||||
cloudflare_gcp_browser_rdp_app_name = "GCP : Browser RDP windows"
|
||||
|
||||
# Application Ports
|
||||
cloudflare_competition_app_port = 8080
|
||||
cloudflare_intranet_app_port = 8181
|
||||
|
||||
60
variables.tf
60
variables.tf
@@ -516,21 +516,6 @@ variable "cloudflare_target_rdp_name" {
|
||||
# CLOUDFLARE ACCESS APPLICATION CONFIGURATION
|
||||
#======================================================
|
||||
|
||||
variable "cloudflare_browser_ssh_app_name" {
|
||||
description = "Name of the Browser Rendering SSH App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_browser_vnc_app_name" {
|
||||
description = "Name of the Browser Rendering VNC App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_infra_app_name" {
|
||||
description = "Name of the Infrastructure App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_sensitive_web_app_name" {
|
||||
description = "Name of the Sensitive web App in Cloudflare"
|
||||
type = string
|
||||
@@ -541,7 +526,50 @@ variable "cloudflare_intranet_web_app_name" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_browser_rdp_app_name" {
|
||||
#======================================================
|
||||
# CLOUDFLARE ACCESS APPLICATION CONFIGURATION AWS
|
||||
#======================================================
|
||||
|
||||
variable "cloudflare_aws_browser_ssh_app_name" {
|
||||
description = "Name of the Browser Rendering SSH App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_aws_browser_vnc_app_name" {
|
||||
description = "Name of the Browser Rendering VNC App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_aws_infra_app_name" {
|
||||
description = "Name of the Infrastructure App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_aws_browser_rdp_app_name" {
|
||||
description = "Name of the RDP windows browser rendered App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
#======================================================
|
||||
# CLOUDFLARE ACCESS APPLICATION CONFIGURATION GCP
|
||||
#======================================================
|
||||
|
||||
variable "cloudflare_gcp_browser_ssh_app_name" {
|
||||
description = "Name of the Browser Rendering SSH App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_gcp_browser_vnc_app_name" {
|
||||
description = "Name of the Browser Rendering VNC App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_gcp_infra_app_name" {
|
||||
description = "Name of the Infrastructure App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cloudflare_gcp_browser_rdp_app_name" {
|
||||
description = "Name of the RDP windows browser rendered App in Cloudflare"
|
||||
type = string
|
||||
}
|
||||
Reference in New Issue
Block a user