We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d8f13 commit c200eb5Copy full SHA for c200eb5
main.tf
@@ -52,8 +52,8 @@ resource "aws_ecs_service" "grafana" {
52
desired_count = 1
53
54
network_configuration {
55
- subnets = var.subnet_ids
56
- security_groups = [aws_security_group.grafana_sg.id]
+ subnets = var.subnet_ids
+ security_groups = [aws_security_group.grafana_sg.id]
57
assign_public_ip = true
58
}
59
modules/grafana/main.tf
@@ -52,8 +52,8 @@ resource "aws_ecs_task_definition" "grafana" {
container_definitions = jsonencode([
{
- name = "grafana"
- image = "grafana/grafana-oss:latest"
+ name = "grafana"
+ image = "grafana/grafana-oss:latest"
portMappings = [{
containerPort = 3000
protocol = "tcp"
0 commit comments