НС
output "debug" {
value = merge(flatten([local.pr])...)
}
Size: a a a
НС
output "debug" {
value = merge(flatten([local.pr])...)
}
N
ИС
SG
propagate_at_launch = true
ИС
AV
az ad sp create-for-rbac --name somename--role="Contributor" -o json
VT
locals {
a = {x = 1}
b = {y = 2}
c = {z = 3}
t = [local.a, local.b, local.c]
m = merge(local.t...)
}
output "m" {
value = local.m
}
Outputs:
m = {
"x" = 1
"y" = 2
"z" = 3
}
VT
az ad sp create-for-rbac --name somename--role="Contributor" -o json
AV
AV
НС
VT
НС
НС
i
VT
НС
S
module.zabbixdb.module.db_parameter_group.aws_db_parameter_group.this[0]: Creating...
Error: Error modifying DB Parameter Group: InvalidParameterCombination: cannot use immediate apply method for static parameter
status code: 400, request id: 5ca2fa8f-5989-40be-94cf-ab9fc086b77a
on .terraform/modules/zabbixdb/modules/db_parameter_group/main.tf line 33, in resource "aws_db_parameter_group" "this":
33: resource "aws_db_parameter_group" "this" {
S
module "zabbixdb" {
source = "github.com/terraform-aws-modules/terraform-aws-rds"
identifier = "zabbixdbinfra"
engine = "mariadb"
engine_version = "10.3.20"
instance_class = "db.t3.small"
allocated_storage = 20
name = "zabbix"
username = "zabbix"
password = "YourPwdShouldBeLongAndSecure!"
port = "3306"
vpc_security_group_ids = [var.default_sg_id]
maintenance_window = "tue:04:13-tue:04:43"
backup_window = "03:00-06:00"
backup_retention_period = 3
final_snapshot_identifier = "zabbixdbinfra"
# DB subnet group
subnet_ids = var.public_subnets
# DB parameter group
family = "mariadb10.3"
# DB option group
major_engine_version = "10.3"
apply_immediately = false
option_group_name = "default:mariadb-10-3"
parameters = [
{
name = "character_set_client"
value = "utf8"
},
{
name = "character_set_server"
value = "utf8"
},
{
name = "character_set_database"
value = "utf8"
},
{
name = "skip_name_resolve"
value = "1"
},
{
name = "time_zone"
value = "europe/moscow"
}
]
}
z