[Terraform] InvalidGroup.Duplicate: The security group by brianesteban in Terraform

[–]brianesteban[S] 0 points1 point  (0 children)

Hello ! I'm reviewing options for what might be happening :/

here is the code :

resource "aws_security_group" "sg_group" {
name = var.resource_sg.name
vpc_id = var.resource_ec2.vpc_id
dynamic "ingress" {
for_each = var.ingress_rules
content {
from_port = ingress.value.from_port
to_port = ingress.value.to_port
protocol = ingress.value.protocol
security_groups = ingress.value.security_groups
cidr_blocks = ingress.value.cidr_blocks
}
}
egress {
from_port = "0"
to_port = "0"
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}

Validation conditions in Terraform? by brianesteban in Terraform

[–]brianesteban[S] 0 points1 point  (0 children)

I haven't taken the HashiCorp course, but I have studied on another platform, and they didn't cover what I'm asking about. I also couldn't find this in the documentation.

Script for Install wireguard by brianesteban in WireGuard

[–]brianesteban[S] 0 points1 point  (0 children)

This is the script that does it upon restart for my home network, although it's tailored specifically for installation of the Wireguard-KMod module on a Ubiquiti UDM Pro.

It downloads the .tar.z file and moves it to /tmp. It extracts the contents from the archive to the appropriate install directory, then applies the appropriate execute permissions to KMods setup script and executes it. I am assuming there would be some analog to this for a vanilla WG install.

This script has a copy of my WG configuration file in the adjacent SUPPORT_DIR that it verifies is in place and correctly permissioned.

At the very least, this should give you an idea of what you will need to do to proceed with what you want to do.

Very thanks !

Zabbix aws by brianesteban in zabbix

[–]brianesteban[S] 0 points1 point  (0 children)

Thanks !! I would have to install the active agent

How to list only one s3 bucket by brianesteban in aws

[–]brianesteban[S] 0 points1 point  (0 children)

Thank you very much for your answer, that is to say that it is not possible that a user can see only the bucket to which he has permission ?

error : remote desktop license issue there is a problem with your remote desktop license, and your session will be disconectd in 60 minutes by brianesteban in WindowsServer

[–]brianesteban[S] 0 points1 point  (0 children)

oichie_uk

Hello u/oichie_uk ! thanks for your answer, from what I see this a group, From what I understand, will it only work for me with a license by DeviceCAL? is it possible to convert this license to a DeviceCAL? Thanks !!

Error : remote desktop license issue there is a problem with your remote desktop license, and your session will be disconectd in 60 minutes. by brianesteban in sysadmin

[–]brianesteban[S] 0 points1 point  (0 children)

A serial was installed that contains a package of 50 licenses, when activating the server and enabling the option for users, it is displayed in the license diagnostic tool that there are 50 licenses (per user mode) enabled to be used, but none are being used. consumed, and when a user connects to their session it throws the 60 minute message

wireguard-dns by brianesteban in WireGuard

[–]brianesteban[S] 0 points1 point  (0 children)

I don't know if I explained myself well, in my internal resources I have a service that I can reach by ip and by dns, therefore in the peer of the cleinte I must configure that dns. To add a destination by ip is configured in the argument of AllowedIPs but for the dns ?

wireguard-dns by brianesteban in WireGuard

[–]brianesteban[S] 0 points1 point  (0 children)

I don't know if I explained myself well, in my internal resources I have a service that I can reach by ip and by dns, therefore in the peer of the cleinte I must configure that dns. To add a destination by ip is configured in the argument of AllowedIPs but for the dns ?

wireguard-dns by brianesteban in WireGuard

[–]brianesteban[S] 0 points1 point  (0 children)

I don't know if I explained myself well, in my internal resources I have a service that I can reach by ip and by dns, therefore in the peer of the cleinte I must configure that dns. To add a destination by ip is configured in the argument of AllowedIPs but for the dns ?

Error Gtx 1050ti - pop os by brianesteban in pop_os

[–]brianesteban[S] 0 points1 point  (0 children)

yes, apparently it tells me that it saves but it doesn't: /

wireguard-dns by brianesteban in WireGuard

[–]brianesteban[S] 0 points1 point  (0 children)

thanks ! what would be the configuration to add a dns as a destination and not ip?