File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17+ module "enable_apis" {
18+ source = " terraform-google-modules/project-factory/google//modules/project_services"
19+ version = " ~> 18.0"
20+
21+ project_id = var. project_id
22+ enable_apis = true
23+ disable_services_on_destroy = false
24+ disable_dependent_services = false
25+
26+ activate_apis = [
27+ " redis.googleapis.com" ,
28+ ]
29+ }
30+
1731module "memstore" {
1832 source = " terraform-google-modules/memorystore/google"
1933 version = " ~> 15.0"
@@ -24,7 +38,7 @@ module "memstore" {
2438 region = " us-east1"
2539 location_id = " us-east1-b"
2640 alternative_location_id = " us-east1-d"
27- enable_apis = true
41+ enable_apis = false
2842 auth_enabled = true
2943 transit_encryption_mode = " SERVER_AUTHENTICATION"
3044 authorized_network = module. test-vpc-module . network_id
You can’t perform that action at this time.
0 commit comments