Commit edcf66c 1 parent ebbbabd commit edcf66c Copy full SHA for edcf66c
File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -63,16 +63,31 @@ resource "azurerm_app_service_custom_hostname_binding" "frontendfestival" {
63
63
resource_group_name = azurerm_resource_group. frontendfestival . name
64
64
}
65
65
66
+ resource "azurerm_app_service_custom_hostname_binding" "wwwFrontendfestival" {
67
+ hostname = " www.frontendfestival.nl"
68
+ app_service_name = azurerm_linux_web_app. frontendfestival . name
69
+ resource_group_name = azurerm_resource_group. frontendfestival . name
70
+ }
71
+
66
72
resource "azurerm_app_service_managed_certificate" "frontendfestival" {
67
73
custom_hostname_binding_id = azurerm_app_service_custom_hostname_binding. frontendfestival . id
68
74
}
75
+ resource "azurerm_app_service_managed_certificate" "wwwFrontendfestival" {
76
+ custom_hostname_binding_id = azurerm_app_service_custom_hostname_binding. wwwFrontendfestival . id
77
+ }
69
78
70
79
resource "azurerm_app_service_certificate_binding" "frontendfestival" {
71
80
hostname_binding_id = azurerm_app_service_custom_hostname_binding. frontendfestival . id
72
81
certificate_id = azurerm_app_service_managed_certificate. frontendfestival . id
73
82
ssl_state = " SniEnabled"
74
83
}
75
84
85
+ resource "azurerm_app_service_certificate_binding" "wwwFrontendfestival" {
86
+ hostname_binding_id = azurerm_app_service_custom_hostname_binding. wwwFrontendfestival . id
87
+ certificate_id = azurerm_app_service_managed_certificate. wwwFrontendfestival . id
88
+ ssl_state = " SniEnabled"
89
+ }
90
+
76
91
resource "azurerm_app_service_source_control" "frontendfestival" {
77
92
app_id = azurerm_linux_web_app. frontendfestival . id
78
93
repo_url = " https://github.com/Ordina-Group/frontendfestival.nl"
You can’t perform that action at this time.
0 commit comments