Git Product home page Git Product logo

Comments (2)

D10S0VSkY-OSS avatar D10S0VSkY-OSS commented on June 21, 2024

Hi @b4nganto,
It looks like you're having a problem with your credentials, please check that your credentials are correct.
Another thing that could be is that you have passed a provider.tf or tfvars with some parameter or variable indicating an account or profile...
Note that SLD manages its own terraform backend and generates tfvars dynamically.
You can see a simple example

Whether you can manage the SLD backend, and where you want it to hold state. In case of S3 it would be something like

Setting deplyment remote-state environment variables

          env:
          - name: SLD_STORE
            value: "S3"
          - name: SLD_BUCKET
            value: "s3-sld-bucket-tf-state"

complete example

apiVersion: apps/v1
kind: Deployment
metadata:
  name: remote-state
  labels:
    name: remote-state
spec:
  replicas: 4 
  selector:
    matchLabels:
      name: remote-state
  template:
    metadata:
      labels:
        name: remote-state
      annotations:
        sidecar.istio.io/inject: "false"
    spec:
      subdomain: primary
      containers:
        - name: remote-state
          image: sld-remote-state
          imagePullPolicy: Always
          command: ["python3", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080", "--workers", "1"]
          env:
          - name: SLD_STORE
            value: "S3"
          - name: SLD_BUCKET
            value: "s3-sld-bucket-tf-state"
          ports:
            - containerPort: 8080
          livenessProbe:
            httpGet:
              path: /
              port: 8080
              httpHeaders:
              - name: status
                value: healthy
            initialDelaySeconds: 60
            periodSeconds: 60
          resources:
            limits:
              memory: 900Mi
              cpu: 1
            requests:
              memory: 300Mi
              cpu: 200m

from stack-lifecycle-deployment.

D10S0VSkY-OSS avatar D10S0VSkY-OSS commented on June 21, 2024

You can see a simple example of a vpc stack :
sld_vlc_poc
Deploy stack with tf version 1.1.6
image
Result:
image

from stack-lifecycle-deployment.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.