石井照幸
石井照幸

Reputation: 55

Is it possible --from-file ConfigMap using kubernetes_config_map resource?

I want to deploy metallb using terraform. metallb configuration is as follows.

apiVersion: v1
kind: ConfigMap
metadata:
  namespace: metallb-system
  name: config
data:
  config: |
    address-pools:
    - name: default
      protocol: layer2
      addresses:
      - 172.16.99.1-172.16.99.255

Is it possible deploy such --from-file configuration using kubernetes_config_map resource?

Upvotes: 1

Views: 2792

Answers (1)

David Maze
David Maze

Reputation: 158822

You can use the file() interpolation function to read the file contents. That might look like:

resource "kubernetes_config_map" "config" {
  metadata {
    namespace = "metallb_system"
    name = "config"
  }
  data {
    config = "${file(${path.module}/config.yml)}"
  }
}

Unlike kubectl create configmap --from-file you do have to specify the filename twice.

Upvotes: 3

Related Questions